diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:04:45 +0000 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:04:45 +0000 |
commit | 8055afd0197862a3358fb219f5bb60233288fe02 (patch) | |
tree | 28f57e526a9cdc334a7684df302ca55da5bbf1ad /Objects/weakrefobject.c | |
parent | Remove a couple of references to long in the c-api docs (diff) | |
download | cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.gz cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.bz2 cpython-8055afd0197862a3358fb219f5bb60233288fe02.zip |
Issue #4910, patch 3/3: rename nb_long to nb_reserved
Diffstat (limited to 'Objects/weakrefobject.c')
-rw-r--r-- | Objects/weakrefobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/weakrefobject.c b/Objects/weakrefobject.c index 538b21cbf49..b65e5fdd34d 100644 --- a/Objects/weakrefobject.c +++ b/Objects/weakrefobject.c @@ -594,7 +594,7 @@ static PyNumberMethods proxy_as_number = { proxy_xor, /*nb_xor*/ proxy_or, /*nb_or*/ proxy_int, /*nb_int*/ - 0, /*nb_long*/ + 0, /*nb_reserved*/ proxy_float, /*nb_float*/ proxy_iadd, /*nb_inplace_add*/ proxy_isub, /*nb_inplace_subtract*/ |