We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ba8db3 commit e893e06Copy full SHA for e893e06
tests/test_pythoncapi_compat.py
@@ -174,15 +174,6 @@ def main():
174
global VERBOSE
175
VERBOSE = ("-v" in sys.argv[1:] or "--verbose" in sys.argv[1:])
176
177
- # Implementing PyFrame_GetLocals() and PyCode_GetCode() require the
178
- # internal C API in Python 3.11 alpha versions.
179
- # Implementing PyCode_GetVarnames() requires the internal C API
180
- # in Python 3.11 beta versions.
181
- if 0x30b0000 <= sys.hexversion < 0x30b00c1:
182
- version = sys.version.split()[0]
183
- print("SKIP TESTS: Python %s is not supported" % version)
184
- return
185
-
186
if faulthandler is not None:
187
faulthandler.enable()
188
0 commit comments