summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-29 02:28:42 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-08-29 02:28:42 (GMT)
commit8211237db89e1d77aff9d4da80059bae1cb3e881 (patch)
treed84233fb30e453664bee4bf16d7b71e14c49ec24 /Misc
parentda21ce3e3109c4a45f89386db42be4f0463aec11 (diff)
downloadcpython-8211237db89e1d77aff9d4da80059bae1cb3e881.zip
cpython-8211237db89e1d77aff9d4da80059bae1cb3e881.tar.gz
cpython-8211237db89e1d77aff9d4da80059bae1cb3e881.tar.bz2
marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bit
ints, convert to PyLong (rather than throwing away the high-order 32 bits).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bf8d1ff..35737ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -8,6 +8,11 @@ Core
Library
++ pickle, cPickle and marshal on 32-bit platforms can now correctly read
+ dumps containing ints written on platforms where Python ints are 8 bytes.
+ When read on a box where Python ints are 4 bytes, such values are
+ converted to Python longs.
+
Tools
Build