summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-01-17 10:04:45 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-01-17 10:04:45 (GMT)
commit8055afd0197862a3358fb219f5bb60233288fe02 (patch)
tree28f57e526a9cdc334a7684df302ca55da5bbf1ad /Include/object.h
parent0bbcc4cf9853fe4864a481e303a9f8d22cf2dc36 (diff)
downloadcpython-8055afd0197862a3358fb219f5bb60233288fe02.zip
cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.gz
cpython-8055afd0197862a3358fb219f5bb60233288fe02.tar.bz2
Issue #4910, patch 3/3: rename nb_long to nb_reserved
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h
index f3fdbda..b1391ca 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -219,7 +219,7 @@ typedef struct {
binaryfunc nb_xor;
binaryfunc nb_or;
unaryfunc nb_int;
- unaryfunc nb_long;
+ void *nb_reserved; /* the slot formerly known as nb_long */
unaryfunc nb_float;
binaryfunc nb_inplace_add;