summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-04-12 23:33:28 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-04-12 23:33:28 (GMT)
commitbd3e362089c9fab1028a1bf58b4e762851a32244 (patch)
treef57c18c9571bc313369e755521f0432985b80a97 /Misc/NEWS
parent3780542039d109ae747816dae208208be93240d6 (diff)
downloadcpython-bd3e362089c9fab1028a1bf58b4e762851a32244.zip
cpython-bd3e362089c9fab1028a1bf58b4e762851a32244.tar.gz
cpython-bd3e362089c9fab1028a1bf58b4e762851a32244.tar.bz2
make assigning to a bytes literal a syntax error (closes #11506)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a90aee9..b80bd52 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,9 @@ Core and Builtins
- Issue #5587: add a repr to dict_proxy objects. Patch by David Stanek and
Daniel Urban.
+- Issue #11506: Trying to assign to a bytes literal should result in a
+ SyntaxError.
+
Library
-------