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 AndiDog_old
Recipients AndiDog_old, brian.curtin, eric.smith, ezio.melotti
Date 2010-04-04.12:07:21
SpamBayes Score 0.0003425249
Marked as misclassified No
Message-id <1270382843.11.0.909421678966.issue8304@psf.upfronthosting.co.za>
In-reply-to
Content
Definitely a Windows problem. I did this on Visual Studio 2008:

    wchar_t out[1000];
    time_t currentTime;
    time(&currentTime);
    tm *timeStruct = gmtime(&currentTime);

    size_t ret = wcsftime(out, 1000, L"%d%A", timeStruct);
    wprintf(L"ret = %d, out = (%s)\n", ret, out);

    ret = wcsftime(out, 1000, L"%d\u200f%A", timeStruct);
    wprintf(L"ret = %d, out = (%s)\n", ret, out);

and the output was

    ret = 8, out = (04Sunday)
    ret = 0, out = ()

Python really shouldn't use any so-called standard functions on Windows. They never work as expected ^^...
History
Date User Action Args
2010-04-04 12:07:23AndiDog_oldsetrecipients: + AndiDog_old, eric.smith, ezio.melotti, brian.curtin
2010-04-04 12:07:23AndiDog_oldsetmessageid: <1270382843.11.0.909421678966.issue8304@psf.upfronthosting.co.za>
2010-04-04 12:07:22AndiDog_oldlinkissue8304 messages
2010-04-04 12:07:21AndiDog_oldcreate