summaryrefslogtreecommitdiff
path: root/Include/longintrepr.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-03-20 16:00:49 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-03-20 16:00:49 +0000
commitd72c7b671e2d010ea39a8686f89c83612d2d3a76 (patch)
treed720a29ccca22a761e6310f2e4f25e57f6b03106 /Include/longintrepr.h
parent0ef2cf6126f47b9a4ef8f8ff93cafed487b67363 (diff)
downloadcpython-git-d72c7b671e2d010ea39a8686f89c83612d2d3a76.tar.gz
Add ..versionadded for sys.int_info, update py3k version of
whatsnew/2.7.rst to keep it in sync with the trunk version, and replace SHIFT with PyLong_SHIFT in #error message
Diffstat (limited to 'Include/longintrepr.h')
-rw-r--r--Include/longintrepr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/longintrepr.h b/Include/longintrepr.h
index 144d04b8dd..dd0933a9ca 100644
--- a/Include/longintrepr.h
+++ b/Include/longintrepr.h
@@ -67,7 +67,7 @@ typedef long stwodigits; /* signed variant of twodigits */
#define PyLong_MASK ((digit)(PyLong_BASE - 1))
#if PyLong_SHIFT % 5 != 0
-#error "longobject.c requires that SHIFT be divisible by 5"
+#error "longobject.c requires that PyLong_SHIFT be divisible by 5"
#endif
/* Long integer representation.