commit | 17e5587693420b33ad7b9bacb732bb74f7596af6 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sat Jan 24 15:56:57 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sat Jan 24 15:56:57 2009 +0000 |
tree | 8ec514d35fd3bbfb511ab257b1b4ac2ab2fe14eb | |
parent | d4624c3331a54506b9c678ad096e56366b66f51d [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 ........