diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2011-03-27 15:25:40 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2011-03-27 15:25:40 (GMT) |
commit | 92b60d55d9115af9661618d7d24da929f181be68 (patch) | |
tree | 16326265d34fcff48260bdb26cf403d97f0f6951 /Misc | |
parent | ccd2283c6fa83a7759a84605810e28713e9f1755 (diff) | |
download | cpython-92b60d55d9115af9661618d7d24da929f181be68.zip cpython-92b60d55d9115af9661618d7d24da929f181be68.tar.gz cpython-92b60d55d9115af9661618d7d24da929f181be68.tar.bz2 |
Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -303,6 +303,7 @@ Eddy De Greef Duncan Grisby Fabian Groffen Dag Gruneau +Filip Gruszczyński Michael Guravage Lars Gustäbel Thomas Güttler @@ -44,6 +44,9 @@ Core and Builtins Library ------- +- Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when + trying to pack a negative (in-range) integer. + - Issue #11675: multiprocessing.[Raw]Array objects created from an integer size are now zeroed on creation. This matches the behaviour specified by the documentation. |