diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-06 14:50:39 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-06 14:50:39 (GMT) |
commit | 3d4b2d4df25aafdfce52e20fc1cb9976671023c2 (patch) | |
tree | 930af82f0af275d532161ff89bd4439a5c7003ad /Misc | |
parent | 9b33872812582fd4891d178fb7ff95e631697660 (diff) | |
download | cpython-3d4b2d4df25aafdfce52e20fc1cb9976671023c2.zip cpython-3d4b2d4df25aafdfce52e20fc1cb9976671023c2.tar.gz cpython-3d4b2d4df25aafdfce52e20fc1cb9976671023c2.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
@@ -27,6 +27,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 #21580: Now Tkinter correctly handles bytes arguments passed to Tk. In particular this allows to initialize images from binary data. |