This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eckhardt
Recipients eckhardt
Date 2009-01-02.13:08:00
SpamBayes Score 0.00039510883
Marked as misclassified No
Message-id <1230901683.42.0.873273528074.issue4807@psf.upfronthosting.co.za>
In-reply-to
Content
Note up front: there is a win32 function wsprintf() and an ISO C
function swprintf(), these are different things in case you wonder.

In _winreg.c, there are two functions that use wsprintf on a char
buffer, while the function takes a TCHAR buffer instead. This leads to
compile warning and runtime errors when _UNICODE is defined, like e.g.
under MS Windows CE. The attached patch replaces the two calls to that
function with calls to fprintf() and PyString_FromFormat().
History
Date User Action Args
2009-01-02 13:08:03eckhardtsetrecipients: + eckhardt
2009-01-02 13:08:03eckhardtsetmessageid: <1230901683.42.0.873273528074.issue4807@psf.upfronthosting.co.za>
2009-01-02 13:08:01eckhardtlinkissue4807 messages
2009-01-02 13:08:00eckhardtcreate