diff options
author | Brett Cannon <brett@python.org> | 2013-06-11 21:22:39 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-11 21:22:39 (GMT) |
commit | 865b2925dd5bcd6847505f6ed05fb886346de136 (patch) | |
tree | 76074176380f59e56a1c580efa712835fb5e7c14 /Lib/importlib | |
parent | 68133fdcbe2266c037514e507c90336cc7a4c4db (diff) | |
download | cpython-865b2925dd5bcd6847505f6ed05fb886346de136.zip cpython-865b2925dd5bcd6847505f6ed05fb886346de136.tar.gz cpython-865b2925dd5bcd6847505f6ed05fb886346de136.tar.bz2 |
typo fix
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 679b347..fc1ce7f 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -376,7 +376,7 @@ def _call_with_frames_removed(f, *args, **kwds): # keyword-only defaults) # Python 3.4a1 3260 (add LOAD_CLASSDEREF; allow locals of class to override # free vars) -# Python 3.4a1 3270 (various tweaks to the __class_ closure) +# Python 3.4a1 3270 (various tweaks to the __class__ closure) # Python 3.4a1 3280 (remove implicit class argument) # # MAGIC must change whenever the bytecode emitted by the compiler may no |