summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-06-11 20:21:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-06-11 20:21:57 (GMT)
commit4f92ca4022cfde233b1c9773c147f169a6237d9a (patch)
tree8c2c4b01ecd0520ac9c28bc5fa18ae87dc8762a0 /Misc
parent624a7893ea53295d072e3392736b26a3c3f569f7 (diff)
downloadcpython-4f92ca4022cfde233b1c9773c147f169a6237d9a.zip
cpython-4f92ca4022cfde233b1c9773c147f169a6237d9a.tar.gz
cpython-4f92ca4022cfde233b1c9773c147f169a6237d9a.tar.bz2
Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5d29093..17fe598 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -60,6 +60,9 @@ Core and Builtins
f_exc_type, f_exc_value, and f_exc_traceback cannot be accessed from Python
code anymore.
+- Three of PyNumberMethods' members, nb_coerce, nb_hex, and nb_oct, have been
+ removed.
+
Extension Modules
-----------------