diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-06 14:51:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-06 14:51:58 (GMT) |
commit | af78ef18241040a91e793bfc511a182d9e5d0bc2 (patch) | |
tree | 9dd980a18b64540c4b6264baefe66e4a9f2b8228 /Misc | |
parent | e18f14e8502dd82ff654d9cbc537bbad9de604f3 (diff) | |
parent | 3d4b2d4df25aafdfce52e20fc1cb9976671023c2 (diff) | |
download | cpython-af78ef18241040a91e793bfc511a182d9e5d0bc2.zip cpython-af78ef18241040a91e793bfc511a182d9e5d0bc2.tar.gz cpython-af78ef18241040a91e793bfc511a182d9e5d0bc2.tar.bz2 |
Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular
when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the
__new__() method.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -112,6 +112,10 @@ Core and Builtins Library ------- +- Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular + when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the + __new__() method. + - Issue #20170: Convert posixmodule to use Argument Clinic. - Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimic |