summaryrefslogtreecommitdiff
path: root/Lib/test/test_dict.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #14417: Mutating a dict during lookup now restarts the lookup instead o...Antoine Pitrou2012-05-131-4/+3
* distiguish between refusing to creating shared keys and error (#13903)Benjamin Peterson2012-04-241-0/+7
* fix instance dicts with str subclasses (#13903)Benjamin Peterson2012-04-231-0/+10
* Implement PEP 412: Key-sharing dictionaries (closes #13903)Benjamin Peterson2012-04-231-0/+21
* Issue #14288: Serialization support for builtin iterators.Kristj?n Valur J?nsson2012-04-031-0/+54
* Issue #14205: Fix test_dict.test_mutating_lookup()Victor Stinner2012-03-091-9/+16
* Close #14205: dict lookup raises a RuntimeError if the dict is modified duringVictor Stinner2012-03-061-1/+21
* Issue #13521: dict.setdefault() now does only one lookup for the given key, m...Antoine Pitrou2012-02-271-0/+20
* handle dict subclasses gracefully in PyArg_ValidateKeywordArgumentsBenjamin Peterson2010-11-171-4/+7
* Reverted inadvertent change from r86095Alexander Belopolsky2010-11-011-8/+0
* Issue #10199: Moved Demo/turtle under Lib/Alexander Belopolsky2010-11-011-0/+8
* Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge...Benjamin Peterson2010-06-271-0/+3
* prevent the dict constructor from accepting non-string keyword args #8419Benjamin Peterson2010-04-241-0/+6
* Recorded merge of revisions 78582 via svnmerge fromFlorent Xicluna2010-03-021-92/+79
* Merged revisions 77727 via svnmerge fromEzio Melotti2010-01-241-1/+1
* use assert[Not]In where appropriateEzio Melotti2010-01-231-8/+1
* use assert[Not]In where appropriateBenjamin Peterson2010-01-191-0/+8
* Issue #7435: Remove duplicate int/long tests, and otherMark Dickinson2009-12-051-7/+0
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-26/+26
* Merged revisions 70546 via svnmerge fromAntoine Pitrou2009-03-231-0/+98
* Give dict views a helpful __repr__.Raymond Hettinger2009-03-031-3/+3
* Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ fromMark Dickinson2009-01-271-1/+1
* Merged revisions 68128 via svnmerge fromAntoine Pitrou2009-01-011-0/+16
* Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-...Georg Brandl2008-08-121-0/+11
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-181-4/+6
* Migrate remaining tests from UserDict.UserDict to collections.UserDict.Raymond Hettinger2008-02-061-3/+3
* Merged revisions 60284-60349 via svnmerge fromChristian Heimes2008-01-271-8/+0
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-191-1/+10
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-101-0/+4
* Add a few mixed-mode (set vs. dict view) comparisons.Guido van Rossum2007-08-241-0/+4
* Keir Mierle's improved tests for dict view containment tests.Guido van Rossum2007-08-241-35/+37
* Add some mixed operations between sets and dict views.Guido van Rossum2007-08-241-0/+8
* Add unit tests for set ops on dict.items().Guido van Rossum2007-08-241-2/+15
* Keir Mierle's set operations for dict views (keys/items only of course).Guido van Rossum2007-08-241-0/+17
* Patch with Keir Mierle: add rich comparisons between dict views and sets,Guido van Rossum2007-08-241-0/+60
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+73
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-4/+4
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-0/+8
* Fix for test_dict.py, thanks to Eduardo O Padoan.Guido van Rossum2007-02-141-5/+5
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-2/+2
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-4/+4
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+10
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-5/+6
* Change the way __hash__ is inherited; when __eq__ or __cmp__ is overriddenGuido van Rossum2006-08-211-0/+4
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-12/+2
* Use *absolute* import now that it is required. (Should this go into 2.5? Ho...Neal Norwitz2006-03-241-1/+1
* - Patch 1433928:Guido van Rossum2006-02-251-0/+50
* Expand scope to include general mapping protocol tests.Raymond Hettinger2004-09-301-0/+13