commit | 76eb789ce091c0f815f756267809cc26b14be6b5 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sat Jan 24 15:42:34 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sat Jan 24 15:42:34 2009 +0000 |
tree | 82689bd50e206989755a190ad51bb9a76a8ccf97 | |
parent | 3a8071a26fda8832a6cdd5ec89ce72b622f33604 [diff] |
Merged revisions 68890 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68890 | mark.dickinson | 2009-01-24 15:27:44 +0000 (Sat, 24 Jan 2009) | 6 lines Issue #4393: fix 3 classes of potential portability problems in longobject.c: - fix some places where counters into ob_digit were declared as int instead of Py_ssize_t - add (twodigit) casts where necessary - fix code in _PyLong_AsByteArray that uses << on negative values ........