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 Claudiu.Popa, Elizacat, ghaering, serhiy.storchaka
Date 2014-07-14.11:44:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405338246.83.0.669035698837.issue21975@psf.upfronthosting.co.za>
In-reply-to
Content
The issue is not in pickling/unpickling, but in sqlite3.Row.__new__ which creates object in invalid state. Simple example:

>>> import sqlite3
>>> r = sqlite3.Row.__new__(sqlite3.Row)
>>> len(r)
Segmentation fault (core dumped)
History
Date User Action Args
2014-07-14 11:44:06serhiy.storchakasetrecipients: + serhiy.storchaka, ghaering, Claudiu.Popa, Elizacat
2014-07-14 11:44:06serhiy.storchakasetmessageid: <1405338246.83.0.669035698837.issue21975@psf.upfronthosting.co.za>
2014-07-14 11:44:06serhiy.storchakalinkissue21975 messages
2014-07-14 11:44:06serhiy.storchakacreate