diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2021-08-17 15:52:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 15:52:50 (GMT) |
commit | c2c857b40f226575d64e0d56a759cbd799f51e62 (patch) | |
tree | 892cfca4ed158bdb48e1eefdee6aeaf230ec8911 /Include | |
parent | 96346cb6d0593ef9ec122614347ccb053cd63433 (diff) | |
download | cpython-c2c857b40f226575d64e0d56a759cbd799f51e62.zip cpython-c2c857b40f226575d64e0d56a759cbd799f51e62.tar.gz cpython-c2c857b40f226575d64e0d56a759cbd799f51e62.tar.bz2 |
bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/cpython/initconfig.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/cpython/initconfig.h b/Include/cpython/initconfig.h index 5f03b8c..22ad0f1 100644 --- a/Include/cpython/initconfig.h +++ b/Include/cpython/initconfig.h @@ -143,6 +143,7 @@ typedef struct PyConfig { int no_debug_ranges; int show_ref_count; int dump_refs; + wchar_t *dump_refs_file; int malloc_stats; wchar_t *filesystem_encoding; wchar_t *filesystem_errors; |