[issue1967] Backport dictviews to 2.7

2019-08-06 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +14880 pull_request: https://github.com/python/cpython/pull/15143 ___ Python tracker ___

[issue1967] Backport dictviews to 2.7

2019-08-06 Thread Thomas Grainger
Thomas Grainger added the comment: It seems that 'viewkeys', 'viewvalues' and 'viewitems' methods were not added to types.DictProxyType, was that intentional? -- nosy: +graingert ___ Python tracker _

[issue1967] Backport dictviews to 2.7

2010-01-11 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Committed in r77428. Thanks for your comments! -- resolution: -> accepted stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue1967] Backport dictviews to 2.7

2009-12-30 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: The tests were missing in my last patch. So, here's a new one. -- Added file: http://bugs.python.org/file15706/backport_dictviews-3.diff ___ Python tracker __

[issue1967] Backport dictviews to 2.7

2009-12-30 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: It looks like that crash is caused by some bug in the implementation of PyUnicode_FromFormat(). I rewrote my patch to avoid it and added some additional unit tests. -- Added file: http://bugs.python.org/file15705/backport_dictviews-2.diff ___

[issue1967] Backport dictviews to 2.7

2009-12-11 Thread Ezio Melotti
Ezio Melotti added the comment: The patch (backport_dictviews.diff) doesn't seem to work for me. I applied it on trunk after a svn up, did "./configure && make" and when I tried d.view{items|keys|values} Python segfaulted: Python 2.7a1+ (trunk:76759M, Dec 12 2009, 00:28:52) [GCC 4.4.1] on linux

[issue1967] Backport dictviews to 2.7

2009-12-11 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Can someone review the patches? I would like to commit this later this week. -- ___ Python tracker ___ ___

[issue1967] Backport dictviews to 2.7

2009-08-04 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Here is a patch for 2to3 to support the translation of code using dictviews. -- Added file: http://bugs.python.org/file14652/2to3_fixer_dictviews.diff ___ Python tracker

[issue1967] Backport dictviews to 2.7

2009-08-04 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: I have refreshed Thomas's patch to reflect recent updates to dictviews. I also added the documentation for dictviews. -- nosy: +alexandre.vassalotti stage: -> patch review Added file: http://bugs.python.org/file14651/backport_dictviews.diff

[issue1967] Backport dictviews to 2.7

2008-08-21 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- title: Backport dictviews to 2.6 -> Backport dictviews to 2.7 versions: +Python 2.7 -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]>