diff options
author | Mark Shannon <mark@hotpy.org> | 2023-05-17 13:17:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 13:17:16 (GMT) |
commit | f7df17394906f2af51afef3c8ccaaab3847b059c (patch) | |
tree | 834ce84a556cf8ea8159b703bfa2d26149e5d9d8 /Misc | |
parent | 26931944dd8abd6554249239344fa62b789b9028 (diff) | |
download | cpython-f7df17394906f2af51afef3c8ccaaab3847b059c.zip cpython-f7df17394906f2af51afef3c8ccaaab3847b059c.tar.gz cpython-f7df17394906f2af51afef3c8ccaaab3847b059c.tar.bz2 |
GH-101520: Move tracemalloc functionality into core, leaving interface in Modules. (#104508)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-05-11-21-32-18.gh-issue-101520.l9MjRE.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-05-11-21-32-18.gh-issue-101520.l9MjRE.rst b/Misc/NEWS.d/next/Library/2023-05-11-21-32-18.gh-issue-101520.l9MjRE.rst new file mode 100644 index 0000000..5e8bf96 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-05-11-21-32-18.gh-issue-101520.l9MjRE.rst @@ -0,0 +1,2 @@ +Move the core functionality of the ``tracemalloc`` module in the ``Python/`` +folder, leaving just the module wrapper in ``Modules/``. |