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 CharlieClark
Recipients CharlieClark, Dominik Geldmacher, Manjusaka, jkloth, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2019-05-06.15:58:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557158317.27.0.613915706215.issue36792@roundup.psfhosted.org>
In-reply-to
Content
import ctypes, struct
libc = ctypes.cdll.msvcrt
buf = ctypes.create_string_buffer(1024)
tm = struct.pack('9i', 2019, 5, 6, 9, 50, 4, 0, 126, 1)
print('count:', libc.strftime(buf, 1024, b'%Z', tm))
print('value:', buf.value)

count: 28
value: b'Mitteleurop\xe4ische Sommerzeit'
History
Date User Action Args
2019-05-06 15:58:37CharlieClarksetrecipients: + CharlieClark, paul.moore, vstinner, tim.golden, jkloth, zach.ware, steve.dower, Manjusaka, Dominik Geldmacher
2019-05-06 15:58:37CharlieClarksetmessageid: <1557158317.27.0.613915706215.issue36792@roundup.psfhosted.org>
2019-05-06 15:58:37CharlieClarklinkissue36792 messages
2019-05-06 15:58:37CharlieClarkcreate