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 serhiy.storchaka
Recipients abarry, anish.shah, berker.peksag, ced, ghaering, lelit, palaviv, r.david.murray, serhiy.storchaka
Date 2017-12-08.09:03:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512723824.65.0.213398074469.issue27645@psf.upfronthosting.co.za>
In-reply-to
Content
It seems to me that the code could be much simpler (and more bugfree) if support only a Connection instance as a target. It is easy to create a Connection instance in Python:

    with sqlite3.connect(filename) as dest:
        source.backup(dest)

But this would save around 50 lines of complex C code. And I'm not sure this code is correct.
History
Date User Action Args
2017-12-08 09:03:44serhiy.storchakasetrecipients: + serhiy.storchaka, ghaering, ced, r.david.murray, berker.peksag, lelit, abarry, anish.shah, palaviv
2017-12-08 09:03:44serhiy.storchakasetmessageid: <1512723824.65.0.213398074469.issue27645@psf.upfronthosting.co.za>
2017-12-08 09:03:44serhiy.storchakalinkissue27645 messages
2017-12-08 09:03:44serhiy.storchakacreate