]> granicus.if.org Git - python/commit
Cray J90 fixes for long ints.
authorTim Peters <tim.peters@gmail.com>
Sat, 8 Jul 2000 04:17:21 +0000 (04:17 +0000)
committerTim Peters <tim.peters@gmail.com>
Sat, 8 Jul 2000 04:17:21 +0000 (04:17 +0000)
commit7d3a511a40a8c90eac66d3d59edbbe3c3d4559b1
treeb2a404e6604682d51adf242e1ac51ac225e6a0bc
parent5639ba4896fa7a4e29f11bf0c42f6e3125785654
Cray J90 fixes for long ints.
This was a convenient excuse to create the pyport.h file recently
discussed!
Please use new Py_ARITHMETIC_RIGHT_SHIFT when right-shifting a
signed int and you *need* sign-extension.  This is #define'd in
pyport.h, keying off new config symbol SIGNED_RIGHT_SHIFT_ZERO_FILLS.
If you're running on a platform that needs that symbol #define'd,
the std tests never would have worked for you (in particular,
at least test_long would have failed).
The autoconfig stuff got added to Python after my Unix days, so
I don't know how that works.  Would someone please look into doing
& testing an auto-config of the SIGNED_RIGHT_SHIFT_ZERO_FILLS
symbol?  It needs to be defined if & only if, e.g., (-1) >> 3 is
not -1.
Include/Python.h
Include/longintrepr.h
Include/pyport.h [new file with mode: 0644]
Objects/intobject.c
Objects/longobject.c
acconfig.h