Changes between Version 2 and Version 3 of Ticket #24381


Ignore:
Timestamp:
Feb 21, 2015, 5:29:16 AM (9 years ago)
Author:
Mark Tranchant
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24381

    • Property Summary Cache pickling exception in 1.8a1Cache 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:
     1In 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.
    22
    33{{{
     
    1919PicklingError: Can't pickle <type 'module'>: it's not found as __builtin__.module
    2020}}}
     21
     22If I try to cache a simple empty QuerySet (MyModel.objecrts.filter(id=0), for example), it works.
Back to Top