Created
May 31, 2020 23:55
-
-
Save laike9m/861c67b6341d946822a44e37822e9efc to your computer and use it in GitHub Desktop.
Checks whether the current Python interpreter has computed gotos enabled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is for detecting whether the current interpreter has enabled computed gotos. | |
# See https://stackoverflow.com/q/61860463/2142577 for details. | |
import sys | |
def global_tracer(frame, event_type, arg): | |
assert event_type == "call" | |
print(f"computed gotos enabled: {frame.f_back.f_lasti == 40}") # Win: 38, Mac, Linux: 40 | |
sys.settrace(global_tracer) | |
x = [1 for i in range(3)] | |
# Part of the bytecode generated by this list comprehension is: | |
# 32 LOAD_NAME 3 (range) | |
# 34 LOAD_CONST 6 (3) | |
# 36 CALL_FUNCTION 1 | |
# 38 GET_ITER | |
# 40 CALL_FUNCTION 1 | |
# 42 STORE_NAME 4 (x) | |
# | |
# There's a PREDICT(CALL_FUNCTION) in GET_ITER's handler, see | |
# https://github.com/python/cpython/blob/v3.8.3/Python/ceval.c#L3165 | |
# If computed goto is not enabled, last_i is not updated after CALL_FUNCTION is | |
# executed, so in the frame.f_back.f_lasti is still 38. | |
# If computed goto is enabled, last_i will be the correct value, which is 40. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment