Message223015
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) |
|
| Date |
User |
Action |
Args |
| 2014-07-14 11:44:06 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, ghaering, Claudiu.Popa, Elizacat |
| 2014-07-14 11:44:06 | serhiy.storchaka | set | messageid: <[email protected]> |
| 2014-07-14 11:44:06 | serhiy.storchaka | link | issue21975 messages |
| 2014-07-14 11:44:06 | serhiy.storchaka | create | |
|