diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-01-10 20:16:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-01-10 20:16:20 (GMT) |
commit | 36f7b97787f3428037ffa007bf93dadb738eef03 (patch) | |
tree | 784e50cbf1821bf57970fa6b9b1e0bb28f70c278 /Misc | |
parent | 7bd04867e53d78ddb0f5e8f78b9256298d41fadd (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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). |