summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-07-28 17:44:05 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2012-07-28 17:44:05 (GMT)
commit7e39572aa875f71d8ad7c5155fff15fe032c2648 (patch)
tree0203799bb4505d7fe07d7db385719d254f3c331c /Misc
parent5562d9dc5dd9f9a7710a1530a114c215516d4700 (diff)
downloadcpython-7e39572aa875f71d8ad7c5155fff15fe032c2648.zip
cpython-7e39572aa875f71d8ad7c5155fff15fe032c2648.tar.gz
cpython-7e39572aa875f71d8ad7c5155fff15fe032c2648.tar.bz2
Issue #15466: Stop using TYPE_INT64 in marshal,
to make importlib.h (and other byte code files) equal between 32-bit and 64-bit systems.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5201d49..e44b9a0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 2?
Core and Builtins
-----------------
+- Issue #15466: Stop using TYPE_INT64 in marshal, to make bytecode
+ files
+
- Issue #1692335: Move initial args assignment to
BaseException.__new__ to help pickling of naive subclasses.