summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-04-22 12:08:36 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-04-22 12:08:36 (GMT)
commitdcb2403022520028a633143602359a30080ed257 (patch)
tree63600ee89e86589546a6e38a65cd453c474a5109 /Misc
parentc303c12160090f926d9ffc582a85b82803785e4d (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ff93519..4697370 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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