diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-26 21:16:25 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-26 21:16:25 (GMT) |
commit | 9204a20452ff3de0c6c3f8937f2b006310675ca0 (patch) | |
tree | 214b3da42b742791f3adf4b846260be2c864c1e2 /Misc | |
parent | e2197d131290b59deb1ad47904e700b642ceffeb (diff) | |
parent | 22805ca54e1e5db4b66be1b28b0baac2b1b4b4de (diff) | |
download | cpython-9204a20452ff3de0c6c3f8937f2b006310675ca0.zip cpython-9204a20452ff3de0c6c3f8937f2b006310675ca0.tar.gz cpython-9204a20452ff3de0c6c3f8937f2b006310675ca0.tar.bz2 |
Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()
if pass invalid string-like object as a name. Patch by Xiang Zhang.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -47,6 +47,9 @@ Core and Builtins Library ------- +- Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() + if pass invalid string-like object as a name. Patch by Xiang Zhang. + - Issue #18893: Fix invalid exception handling in Lib/ctypes/macholib/dyld.py. Patch by Madison May. |