summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-01-10 20:16:20 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-01-10 20:16:20 (GMT)
commit36f7b97787f3428037ffa007bf93dadb738eef03 (patch)
tree784e50cbf1821bf57970fa6b9b1e0bb28f70c278 /Misc
parent7bd04867e53d78ddb0f5e8f78b9256298d41fadd (diff)
downloadcpython-36f7b97787f3428037ffa007bf93dadb738eef03.zip
cpython-36f7b97787f3428037ffa007bf93dadb738eef03.tar.gz
cpython-36f7b97787f3428037ffa007bf93dadb738eef03.tar.bz2
remove __del__ because it's evil and also prevents the ResourceWarning on the socket from happening (closes #16900)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f0b569c..1ed665a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -142,6 +142,8 @@ Core and Builtins
Library
-------
+- Issue #16900: Issue a ResourceWarning when an ssl socket is left unclosed.
+
- Issue #15545: Fix regression in sqlite3's iterdump method where it was
failing if the connection used a row factory (such as sqlite3.Row) that
produced unsortable objects. (Regression was introduced by fix for 9750).