[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +1078 ___ Python tracker ___ ___

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-09-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Martin! -- versions: +Python 2.7 ___ Python tracker ___ ___

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-09-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 38e954a2a37e by Serhiy Storchaka in branch '2.7': Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() https://hg.python.org/cpython/rev/38e954a2a37e -- ___ Python tracker

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-09-30 Thread Martin Panter
Martin Panter added the comment: The test in 2.7 (1aae9b7ff321) seems to cause a Windows 8.1 buildbot to hang in test_sqlite. I deduced this because there is no mention of "test_sqlite" in the test log output, compared to a previous successful test log.

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-09-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. Thank you for your patch. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-09-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1aae9b7ff321 by Serhiy Storchaka in branch '2.7': Issue #27897: Backported tests. https://hg.python.org/cpython/rev/1aae9b7ff321 -- ___ Python tracker

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-09-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset c739660489c1 by Serhiy Storchaka in branch '3.5': Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation() https://hg.python.org/cpython/rev/c739660489c1 New changeset c2eb90422aec by Serhiy Storchaka in branch '3.6': Issue

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-09-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka stage: -> patch review versions: +Python 3.7 ___ Python tracker

[issue27897] Avoid possible crash in pysqlite_connection_create_collation

2016-08-30 Thread Xiang Zhang
New submission from Xiang Zhang: When supplied a custom string with upper returning a non-string, pysqlite_connection_create_collation will fail assertion and crash. Serhiy, I think we can use the same way in set_isolation_level to avoid this. -- components: Library (Lib) files: