summaryrefslogtreecommitdiff
path: root/Lib/importlib
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2013-10-22 10:49:20 -0700
committerLarry Hastings <larry@hastings.org>2013-10-22 10:49:20 -0700
commitd0a7e678044dc86860cb362f153a2be5976200d9 (patch)
tree333e0926155d65c561418ce302c4a60d78156217 /Lib/importlib
parente0d9a1c8bcaa0740b0a8d1e60070b947ab3463e7 (diff)
parent3f2f19230c8654461dfbcb68186babfb80d33ccc (diff)
downloadcpython-git-d0a7e678044dc86860cb362f153a2be5976200d9.tar.gz
Merge 3.4.0a4 release head back into trunk.
Diffstat (limited to 'Lib/importlib')
-rw-r--r--Lib/importlib/_bootstrap.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index e8eeea1fd4..ec105329ff 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -370,12 +370,13 @@ def _call_with_frames_removed(f, *args, **kwds):
# Python 3.4a1 3270 (various tweaks to the __class__ closure)
# Python 3.4a1 3280 (remove implicit class argument)
# Python 3.4a4 3290 (changes to __qualname__ computation)
+# Python 3.4a4 3300 (more changes to __qualname__ computation)
#
# MAGIC must change whenever the bytecode emitted by the compiler may no
# longer be understood by older implementations of the eval loop (usually
# due to the addition of new opcodes).
-MAGIC_NUMBER = (3290).to_bytes(2, 'little') + b'\r\n'
+MAGIC_NUMBER = (3300).to_bytes(2, 'little') + b'\r\n'
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
_PYCACHE = '__pycache__'