cpython/Lib/sqlite3/test
Peter McCormick bfee9fad84
bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)
# [bpo-41815](): SQLite: fix segfault if backup called on closed database

Attempting to backup a closed database will trigger segfault:

```python
import sqlite3
target = sqlite3.connect(':memory:')
source = sqlite3.connect(':memory:')
source.close()
source.backup(target)
```
2020-09-19 20:40:46 -07:00
..
__init__.py
backup.py bpo-41815: SQLite: segfault if backup called on closed database (GH-22322) 2020-09-19 20:40:46 -07:00
dbapi.py bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) 2020-09-17 10:35:44 +03:00
dump.py
factory.py bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) 2019-09-17 09:20:56 +03:00
hooks.py bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) 2020-09-07 22:26:54 +01:00
regression.py bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) 2020-09-17 10:35:44 +03:00
transactions.py bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) 2020-09-07 22:26:54 +01:00
types.py bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) 2020-09-07 22:26:54 +01:00
userfunctions.py bpo-40784: Fix sqlite3 deterministic test (GH-20448) 2020-05-29 02:27:31 +03:00