diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-03-20 16:00:49 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-03-20 16:00:49 (GMT) |
commit | d72c7b671e2d010ea39a8686f89c83612d2d3a76 (patch) | |
tree | d720a29ccca22a761e6310f2e4f25e57f6b03106 /Include/longintrepr.h | |
parent | 0ef2cf6126f47b9a4ef8f8ff93cafed487b67363 (diff) | |
download | cpython-d72c7b671e2d010ea39a8686f89c83612d2d3a76.zip cpython-d72c7b671e2d010ea39a8686f89c83612d2d3a76.tar.gz cpython-d72c7b671e2d010ea39a8686f89c83612d2d3a76.tar.bz2 |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/longintrepr.h b/Include/longintrepr.h index 144d04b..dd0933a 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. |