diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:04:45 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:04:45 (GMT) |
commit | 8055afd0197862a3358fb219f5bb60233288fe02 (patch) | |
tree | 28f57e526a9cdc334a7684df302ca55da5bbf1ad /Objects/longobject.c | |
parent | 0bbcc4cf9853fe4864a481e303a9f8d22cf2dc36 (diff) | |
download | cpython-8055afd0197862a3358fb219f5bb60233288fe02.zip cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.gz cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.bz2 |
Issue #4910, patch 3/3: rename nb_long to nb_reserved
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index 259f7c5..b7ba796 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -3830,7 +3830,7 @@ static PyNumberMethods long_as_number = { long_xor, /*nb_xor*/ long_or, /*nb_or*/ long_long, /*nb_int*/ - 0, /*nb_long*/ + 0, /*nb_reserved*/ long_float, /*nb_float*/ 0, /* nb_inplace_add */ 0, /* nb_inplace_subtract */ |