summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-09-01 02:13:03 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-09-01 02:13:03 (GMT)
commit0224d4e6992fdc91d8c095c7657bfcd7ce7a07a8 (patch)
tree1c54b30efdc96ddf8d557e02075d6daf1dbf26a0 /Misc
parent48e484fdde4295c755dd3d6df6d7f1633eb17f2b (diff)
downloadcpython-0224d4e6992fdc91d8c095c7657bfcd7ce7a07a8.zip
cpython-0224d4e6992fdc91d8c095c7657bfcd7ce7a07a8.tar.gz
cpython-0224d4e6992fdc91d8c095c7657bfcd7ce7a07a8.tar.bz2
accept bytes for the AST 'string' type
This is a temporary kludge and all is well in 3.3.
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 a562d29..4df888f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Accept bytes for the AST string type. This is temporary until a proper fix in
+ 3.3.
+
- Issue #9200: The str.is* methods now work with strings that contain non-BMP
characters even in narrow Unicode builds.