diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-13 01:41:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-13 01:41:00 (GMT) |
commit | 2c07c493d2eb45101312e3eb3a77f94d0c9cad1f (patch) | |
tree | 5cd5016fbf1a2b3833dbeb83ca7c1055c8671c5b /Misc | |
parent | 1584a0081500d35dc93ff88e5836df35faf3e3e2 (diff) | |
download | cpython-2c07c493d2eb45101312e3eb3a77f94d0c9cad1f.zip cpython-2c07c493d2eb45101312e3eb3a77f94d0c9cad1f.tar.gz cpython-2c07c493d2eb45101312e3eb3a77f94d0c9cad1f.tar.bz2 |
bpo-29564: warnings suggests to enable tracemalloc (GH-10486)
The warnings module now suggests to enable tracemalloc if the source
is specified, tracemalloc module is available, but tracemalloc is not
tracing memory allocations.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-11-12-17-40-04.bpo-29564.SFNBT5.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-11-12-17-40-04.bpo-29564.SFNBT5.rst b/Misc/NEWS.d/next/Library/2018-11-12-17-40-04.bpo-29564.SFNBT5.rst new file mode 100644 index 0000000..7ef3ade --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-11-12-17-40-04.bpo-29564.SFNBT5.rst @@ -0,0 +1,3 @@ +The warnings module now suggests to enable tracemalloc if the source is +specified, the tracemalloc module is available, but tracemalloc is not +tracing memory allocations. |