diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-09-16 17:15:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-16 17:15:18 (GMT) |
commit | 8debfa50407107ff2329d01081cdc12d359f1d12 (patch) | |
tree | 37668c95d2aad9ac11e6c9a97a2b0cccce3526b8 /Misc | |
parent | a9187c31185fe7ea47271839898416400cc3d976 (diff) | |
download | cpython-8debfa50407107ff2329d01081cdc12d359f1d12.zip cpython-8debfa50407107ff2329d01081cdc12d359f1d12.tar.gz cpython-8debfa50407107ff2329d01081cdc12d359f1d12.tar.bz2 |
bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-09-15-10-30-33.bpo-38175.61XlUv.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-15-10-30-33.bpo-38175.61XlUv.rst b/Misc/NEWS.d/next/Library/2019-09-15-10-30-33.bpo-38175.61XlUv.rst new file mode 100644 index 0000000..6d9f280 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-09-15-10-30-33.bpo-38175.61XlUv.rst @@ -0,0 +1 @@ +Fix a memory leak in comparison of :class:`sqlite3.Row` objects. |