This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pdmccormick
Recipients aeros, ghaering, lukasz.langa, pdmccormick, python-dev
Date 2020-09-20.03:22:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1600572132.03.0.455308448646.issue41815@roundup.psfhosted.org>
In-reply-to
Content
Updated sample script, thanks to @aeros for catching the omission:

```
import sqlite3
target = sqlite3.connect(':memory:')
source = sqlite3.connect(':memory:')
source.close()
source.backup(target)
```
History
Date User Action Args
2020-09-20 03:22:12pdmccormicksetrecipients: + pdmccormick, ghaering, lukasz.langa, python-dev, aeros
2020-09-20 03:22:12pdmccormicksetmessageid: <1600572132.03.0.455308448646.issue41815@roundup.psfhosted.org>
2020-09-20 03:22:12pdmccormicklinkissue41815 messages
2020-09-20 03:22:11pdmccormickcreate