diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-22 12:08:36 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-22 12:08:36 (GMT) |
commit | dcb2403022520028a633143602359a30080ed257 (patch) | |
tree | 63600ee89e86589546a6e38a65cd453c474a5109 /Misc | |
parent | c303c12160090f926d9ffc582a85b82803785e4d (diff) | |
download | cpython-dcb2403022520028a633143602359a30080ed257.zip cpython-dcb2403022520028a633143602359a30080ed257.tar.gz cpython-dcb2403022520028a633143602359a30080ed257.tar.bz2 |
Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,
you have to convert your bytearray filenames to bytes
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, + you have to convert your bytearray filenames to bytes + - Issue #7332: Remove the 16KB stack-based buffer in PyMarshal_ReadLastObjectFromFile, which doesn't bring any noticeable benefit compared to the dynamic memory allocation fallback. Patch by |