[issue826897] Proto 2 pickle vs dict subclass

2014-11-03 Thread Tim Graham
Tim Graham added the comment: Cookie pickling issue should be fixed in #22775. -- nosy: +Tim.Graham ___ Python tracker ___ ___ Python

[issue826897] Proto 2 pickle vs dict subclass

2014-09-08 Thread Andres Riancho
Andres Riancho added the comment: FYI, I'm using Python 2.7.6 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue826897] Proto 2 pickle vs dict subclass

2014-09-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Alexandre or Antoine, do either of you want to either reopen or verify that this dict subclass pickle issue was properly closed as won't fix? -- nosy: +alexandre.vassalotti, pitrou ___ Python tracker

[issue826897] Proto 2 pickle vs dict subclass

2014-09-08 Thread Andres Riancho
Changes by Andres Riancho : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue826897] Proto 2 pickle vs dict subclass

2014-09-08 Thread Andres Riancho
Changes by Andres Riancho : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue826897] Proto 2 pickle vs dict subclass

2014-09-08 Thread Andres Riancho
Andres Riancho added the comment: Django's issue [0] shows the ugly code people write to work around this python bug. [0] https://code.djangoproject.com/ticket/15863 -- ___ Python tracker ___

[issue826897] Proto 2 pickle vs dict subclass

2014-09-08 Thread Andres Riancho
Andres Riancho added the comment: Well, closing this as wont-fix is far from ideal. +4 years have past from the last activity in this issue but people are still being hit by this issue. In my case I'm not creating any special sub-class, I just use one of Python's built-in libs: ```python impo

[issue826897] Proto 2 pickle vs dict subclass

2008-12-05 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> wont fix status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue826897] Proto 2 pickle vs dict subclass

2008-12-05 Thread Terry J. Reedy
Terry J. Reedy <[EMAIL PROTECTED]> added the comment: James Stroud ran into this same issue with 2.5. Here is his 'ugly fix' for working with protocol 2 only. class DictPlus(dict): def __init__(self, *args, **kwargs): self.extra_thing = ExtraThingClass() dict.__init__(self, *args, **k