| commit | bd3e362089c9fab1028a1bf58b4e762851a32244 | [log] [tgz] |
|---|---|---|
| author | Benjamin Peterson <benjamin@python.org> | Tue Apr 12 18:33:28 2011 -0500 |
| committer | Benjamin Peterson <benjamin@python.org> | Tue Apr 12 18:33:28 2011 -0500 |
| tree | f57c18c9571bc313369e755521f0432985b80a97 | |
| parent | 3780542039d109ae747816dae208208be93240d6 [diff] [blame] |
make assigning to a bytes literal a syntax error (closes #11506)
diff --git a/Misc/NEWS b/Misc/NEWS index a90aee9..b80bd52 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -45,6 +45,9 @@ - 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 -------