mirror of
https://github.com/python/cpython.git
synced 2025-10-29 09:29:26 +00:00
bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)
Rename PyConfig.no_debug_ranges to PyConfig.code_debug_ranges and invert the value. Document -X no_debug_ranges and PYTHONNODEBUGRANGES env var in PyConfig.code_debug_ranges documentation.
This commit is contained in:
parent
cb2b3c8d35
commit
a6c3b0faa1
8 changed files with 22 additions and 18 deletions
|
|
@ -143,7 +143,7 @@ typedef struct PyConfig {
|
|||
int faulthandler;
|
||||
int tracemalloc;
|
||||
int import_time;
|
||||
int no_debug_ranges;
|
||||
int code_debug_ranges;
|
||||
int show_ref_count;
|
||||
int dump_refs;
|
||||
wchar_t *dump_refs_file;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue