| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Remove _PyInterpreterState_GetConfigCopy() and _PyInterpreterState_SetConfig() private functions. PEP 741 "Python Configuration C API" added a better public C API: PyConfig_Get() and PyConfig_Set().
|
I got impacted by #129060 issue. I rebased my PR on top of it to fix the issue. |
Sorry, something went wrong.
|
Oh, test_py_config_isoloated_per_interpreter() of test_capi.test_misc fails with in Free Threaded build: ImportError: module _testcapi does not support loading in subinterpreters |
Sorry, something went wrong.
…hon#129048) Remove _PyInterpreterState_GetConfigCopy() and _PyInterpreterState_SetConfig() private functions. PEP 741 "Python Configuration C API" added a better public C API: PyConfig_Get() and PyConfig_Set().
| raise unittest.SkipTest("_testinternalcapi required") | ||
| config = _testinternalcapi.get_config() | ||
| return not _testcapi.config_get('code_debug_ranges') | ||
| return not bool(config['code_debug_ranges']) |
There was a problem hiding this comment.
The return statement added on Line 511 is shadowing this return.
Sorry, something went wrong.
There was a problem hiding this comment.
Ooops, well spotted, I created #137379 to remove the dead code.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Remove _PyInterpreterState_GetConfigCopy() and
_PyInterpreterState_SetConfig() private functions. PEP 741 "Python Configuration C API" added a better public C API: PyConfig_Get() and PyConfig_Set().