diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-22 08:13:20 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-22 08:13:20 (GMT) |
commit | e79ec70801e410de9c3110ffe78f98e08114ae16 (patch) | |
tree | 4dffcd5f09a018f6b67feaeab43963aed6726eab /Misc | |
parent | 5cbd8331ff567ee568713dc5e63820ffb453ac4b (diff) | |
parent | 08d230a5408e9fac3adbb357f5fb4a43958991d4 (diff) | |
download | cpython-e79ec70801e410de9c3110ffe78f98e08114ae16.zip cpython-e79ec70801e410de9c3110ffe78f98e08114ae16.tar.gz cpython-e79ec70801e410de9c3110ffe78f98e08114ae16.tar.bz2 |
Issue #24257: Fixed incorrect uses of PyObject_IsInstance().
Fixed segmentation fault in sqlite3.Row constructor with faked cursor type.
Fixed system error in the comparison of faked types.SimpleNamespace.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: 2015-05-24 Core and Builtins ----------------- +- Issue #24257: Fixed system error in the comparison of faked + types.SimpleNamespace. + - Issue #22939: Fixed integer overflow in iterator object. Patch by Clement Rouault. @@ -55,6 +58,9 @@ Core and Builtins Library ------- +- Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with faked + cursor type. + - Issue #15836: assertRaises(), assertRaisesRegex(), assertWarns() and assertWarnsRegex() assertments now check the type of the first argument to prevent possible user error. Based on patch by Daniel Wagner-Hall. |