mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -531,7 +531,7 @@ static int test_init_from_config(void)
|
|||
config.import_time = 1;
|
||||
|
||||
putenv("PYTHONNODEBUGRANGES=0");
|
||||
config.no_debug_ranges = 1;
|
||||
config.code_debug_ranges = 0;
|
||||
|
||||
config.show_ref_count = 1;
|
||||
/* FIXME: test dump_refs: bpo-34223 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue