diff options
author | Batuhan Taskaya <batuhan@python.org> | 2021-06-30 22:53:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 22:53:36 (GMT) |
commit | 1b28187a0e3e914ee48de8032cbba0a965dd5563 (patch) | |
tree | ebdccc08b86369b90e61eb1066a8af68694589c0 /Lib/importlib | |
parent | 66c53b48e1f5c841d9f48e51ce7bf1a74b75b629 (diff) | |
download | cpython-1b28187a0e3e914ee48de8032cbba0a965dd5563.zip cpython-1b28187a0e3e914ee48de8032cbba0a965dd5563.tar.gz cpython-1b28187a0e3e914ee48de8032cbba0a965dd5563.tar.bz2 |
bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (GH-26677)
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 21ac22d..c8b8ece 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -360,6 +360,7 @@ _code_type = type(_write_atomic.__code__) # Python 3.11a1 3455 (add MAKE_CELL bpo-43693) # Python 3.11a1 3456 (interleave cell args bpo-43693) # Python 3.11a1 3457 (Change localsplus to a bytes object bpo-43693) +# Python 3.11a1 3458 (imported objects now don't use LOAD_METHOD/CALL_METHOD) # # MAGIC must change whenever the bytecode emitted by the compiler may no |