summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-12-23 16:51:42 +0000
committerGuido van Rossum <guido@python.org>2002-12-23 16:51:42 +0000
commit633d90c7a332619e7d9bdceb9b00e34dc6702223 (patch)
tree1aea3b76006e1a4feb04da72b16f134738c6878b /Misc
parentcae330e44951bdcb7153e306cf95818c5eb07633 (diff)
downloadcpython-git-633d90c7a332619e7d9bdceb9b00e34dc6702223.tar.gz
Oops. Roll back that last change. It wasn't ready for release. :-(
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 0 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8da277a9d3..5cc62bf198 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,10 +84,6 @@ Type/class unification and new-style classes
Core and builtins
-----------------
-- Assignment to None has long been frowned upon. Now there's a
- warning message when you do this. It also warns against assignment
- to True or False.
-
- A frame object's f_lineno attribute can now be written to from a
trace function to change which line will execute next. A command to
exploit this from pdb has been added. [SF patch #643835]