summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 100897957a..c789843030 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,13 @@ TO DO
Core and Builtins
-----------------
+- Removed the __oct__ and __hex__ special methods and added a bin()
+ builtin function.
+
+- PEP 3127: octal literals now start with "0o". Old-style octal literals
+ are invalid. There are binary literals with a prefix of "0b".
+ This also affects int(x, 0).
+
- None, True, False are now keywords.
- PEP 3119: isinstance() and issubclass() can be overridden.