diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-11-23 12:27:24 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-11-23 12:27:24 +0100 |
commit | ed3b0bca3ef9d7bdbb8bd8e67e60e85f5a336da0 (patch) | |
tree | fd4390855d293372f73048fdf4b3e6b4a7cdf440 /PC | |
parent | 0fb6072fad411eba171b53037bcc04d07c7b0770 (diff) | |
download | cpython-git-ed3b0bca3ef9d7bdbb8bd8e67e60e85f5a336da0.tar.gz |
Issue #18874: Implement the PEP 454 (tracemalloc)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index 42a07c9694..d8db109f11 100644 --- a/PC/config.c +++ b/PC/config.c @@ -13,6 +13,7 @@ extern PyObject* PyInit_binascii(void); extern PyObject* PyInit_cmath(void); extern PyObject* PyInit_errno(void); extern PyObject* PyInit_faulthandler(void); +extern PyObject* PyInit__tracemalloc(void); extern PyObject* PyInit_gc(void); extern PyObject* PyInit_math(void); extern PyObject* PyInit__md5(void); @@ -102,6 +103,7 @@ struct _inittab _PyImport_Inittab[] = { {"msvcrt", PyInit_msvcrt}, {"_locale", PyInit__locale}, #endif + {"_tracemalloc", PyInit__tracemalloc}, /* XXX Should _winapi go in a WIN32 block? not WIN64? */ {"_winapi", PyInit__winapi}, |