diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-11 20:21:57 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-11 20:21:57 (GMT) |
commit | 4f92ca4022cfde233b1c9773c147f169a6237d9a (patch) | |
tree | 8c2c4b01ecd0520ac9c28bc5fa18ae87dc8762a0 /Doc/c-api/typeobj.rst | |
parent | 624a7893ea53295d072e3392736b26a3c3f569f7 (diff) | |
download | cpython-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 'Doc/c-api/typeobj.rst')
-rw-r--r-- | Doc/c-api/typeobj.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index 8ea61b0..8031c10 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -1049,13 +1049,9 @@ Number Object Structures binaryfunc nb_and; binaryfunc nb_xor; binaryfunc nb_or; - int nb_reserved; /* unused, must be zero */ unaryfunc nb_int; unaryfunc nb_long; unaryfunc nb_float; - - unaryfunc nb_oct; /* not used anymore, must be zero */ - unaryfunc nb_hex; /* not used anymore, must be zero */ binaryfunc nb_inplace_add; binaryfunc nb_inplace_subtract; |