diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-04-04 19:24:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 19:24:16 (GMT) |
commit | b709302f3125622986bd458dfb2954fda5e8366d (patch) | |
tree | a86af298ed71e6ee71c42802ef0ee969e43c48be /Misc | |
parent | a94e6272f16381349dbed74cdb738ec8ae23b4fe (diff) | |
download | cpython-b709302f3125622986bd458dfb2954fda5e8366d.zip cpython-b709302f3125622986bd458dfb2954fda5e8366d.tar.gz cpython-b709302f3125622986bd458dfb2954fda5e8366d.tar.bz2 |
bpo-40077: Fix potential refleaks of _json: traverse memo (GH-19344)
Fix possible refleaks in _json module, memo of PyScannerObject
should be traversed.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-04-04-12-43-19.bpo-40077.m15TTX.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-04-04-12-43-19.bpo-40077.m15TTX.rst b/Misc/NEWS.d/next/Core and Builtins/2020-04-04-12-43-19.bpo-40077.m15TTX.rst new file mode 100644 index 0000000..21ed615 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-04-04-12-43-19.bpo-40077.m15TTX.rst @@ -0,0 +1 @@ +Fix possible refleaks in :mod:`_json`, memo of PyScannerObject should be traversed. |