[issue23264] Add pickle support of dict views

2016-06-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your attention Guido. -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue23264] Add pickle support of dict views

2016-06-04 Thread Guido van Rossum
Guido van Rossum added the comment: Hm, I no longer think this is a good idea. See http://bugs.python.org/issue23401#msg267383 . -- ___ Python tracker ___ __

[issue23264] Add pickle support of dict views

2016-06-04 Thread Guido van Rossum
Guido van Rossum added the comment: On general I think we should always document whether a class is picklable. And we should document how a subclass can hook into pickling. --Guido (mobile) -- ___ Python tracker _

[issue23264] Add pickle support of dict views

2016-06-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What docs are needed? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue23264] Add pickle support of dict views

2016-06-04 Thread Guido van Rossum
Guido van Rossum added the comment: Why no docs? -- nosy: +gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue23264] Add pickle support of dict views

2015-02-04 Thread Josh Rosenberg
Changes by Josh Rosenberg : -- nosy: +josh.r ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue23264] Add pickle support of dict views

2015-02-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Antoine. Do you have objections Raymond? I'm going to provide similar patch for MappingView. More robust tests in updated patch. -- assignee: -> serhiy.storchaka Added file: http://bugs.python.org/file38015/pickle_dictviews_2.patch _

[issue23264] Add pickle support of dict views

2015-01-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: This looks good to me, thank you. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue23264] Add pickle support of dict views

2015-01-18 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: For now dict views are not pickleable in Python 3 (unlike to Python 2 and unlike to dict view iterators). Proposed patch adds pickle support of dict views. -- components: Interpreter Core files: pickle_dictviews.patch keywords: patch messages: 2342