diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-05-26 21:41:42 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-05-26 21:41:42 (GMT) |
commit | 74c71f5a624cef653c7da470607ca063b749ef75 (patch) | |
tree | 9f12198761e274b73716ee6c59be788fd9ecc628 /Misc | |
parent | 954aa943f13f183289392d9888cd83cc67715a68 (diff) | |
download | cpython-74c71f5a624cef653c7da470607ca063b749ef75.zip cpython-74c71f5a624cef653c7da470607ca063b749ef75.tar.gz cpython-74c71f5a624cef653c7da470607ca063b749ef75.tar.bz2 |
#2957: marshal recursion limit exceeded when importing a large .pyc file
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's new in Python 3.0b1? Core and Builtins ----------------- +- Issue #2957: Corrected a ValueError "recursion limit exceeded", when + unmarshalling many code objects, which happens when importing a + large .pyc file (~1000 functions). + - Issue #2963: fix merging oversight that disabled method cache for all types. |