summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-11-09 21:06:24 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2001-11-09 21:06:24 +0000
commit249aaeda0ac7615c4327d3f4e5f79474269be858 (patch)
tree430a94f17e0ca13a272af374a46df77ff493192c /Misc
parent107b7daf5a6ce123cad4ae7d02a12ae1eadcb30b (diff)
downloadcpython-git-249aaeda0ac7615c4327d3f4e5f79474269be858.tar.gz
Add note about assignment to __debug__ being an error.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e873dad688..ba98321d9f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,10 @@ Type/class unification and new-style classes
Core and builtins
+- Assignment to __debug__ raises SyntaxError at compile-time. This
+ was promised when 2.1c1 was released as "What's New in Python 2.1c1"
+ (below) says.
+
- Clarified the error messages for unsupported operands to an operator
(like 1 + '').