cpython/Lib/sqlite3/test
Miss Islington (bot) 4ee30c4244
bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)
GH- [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)
```
(cherry picked from commit bfee9fad84)

Co-authored-by: Peter McCormick <peter@pdmccormick.com>
2020-09-21 15:05:17 -07:00
..
__init__.py
backup.py bpo-41815: SQLite: segfault if backup called on closed database (GH-22322) 2020-09-21 15:05:17 -07:00
dbapi.py bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) 2020-09-17 00:57:07 -07:00
dump.py
factory.py
hooks.py
regression.py bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998) 2020-09-17 00:57:07 -07:00
transactions.py
types.py
userfunctions.py