Changes between Version 2 and Version 3 of Ticket #24381
- Timestamp:
- Feb 21, 2015, 5:29:16 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24381
- Property Summary Cache pickling exception in 1.8a1 → Cache pickling exception in 1.8a1 with cross-table filter params
-
Ticket #24381 – Description
v2 v3 1 In 1.7.4, I can run the following in ../manage.py shell:1 In 1.7.4, I can run the following transcript in ../manage.py shell. The Contributor model has two ForeignKeys, to MyModel and Task, so I'm looking up all MyModels which have a referring contributor associated with task 4. 2 2 3 3 {{{ … … 19 19 PicklingError: Can't pickle <type 'module'>: it's not found as __builtin__.module 20 20 }}} 21 22 If I try to cache a simple empty QuerySet (MyModel.objecrts.filter(id=0), for example), it works.