[issue18357] add tests for dictview set difference operations

2013-08-08 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patch! -- assignee: -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue18357] add tests for dictview set difference operations

2013-08-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0152152b09d0 by Ezio Melotti in branch '2.7': #18357: add tests for dictview set difference. Patch by Fraser Tweedale. http://hg.python.org/cpython/rev/0152152b09d0 New changeset 8b557ef46d7c by Ezio Melotti in branch '3.3': #18357: add tests for d

[issue18357] add tests for dictview set difference operations

2013-07-05 Thread Eric Snow
Eric Snow added the comment: Same here. -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue18357] add tests for dictview set difference operations

2013-07-05 Thread Éric Araujo
Éric Araujo added the comment: Looks good to me. -- nosy: +eric.araujo stage: -> patch review versions: +Python 3.3, Python 3.4 ___ Python tracker ___ __

[issue18357] add tests for dictview set difference operations

2013-07-04 Thread Fraser Tweedale
Fraser Tweedale added the comment: and here's a patch for python3 (the earlier patch is for the 2.7 branch). -- Added file: http://bugs.python.org/file30773/dictview-set-sub-test-python3.patch ___ Python tracker __

[issue18357] add tests for dictview set difference operations

2013-07-04 Thread Fraser Tweedale
New submission from Fraser Tweedale: The Python documentation states that set-like dictionary view objects support set difference (-), however, this behaviour is untested. Add some tests for this behaviour. (This issue was discovered because PyPy doesn't support (-) for dictviews, yet they cl