summaryrefslogtreecommitdiff
path: root/Lib/_abcoll.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #24286: Register dict views with the MappingView ABCs.Raymond Hettinger2015-05-261-0/+3
* Issue #22609: Constructors and update methods of mapping classes in theSerhiy Storchaka2014-11-271-16/+18
* Fix guidance for subclassing collections.Set()Raymond Hettinger2014-07-031-1/+1
* Issue 8743: Improve interoperability between sets and the collections.Set ab...Raymond Hettinger2014-05-251-2/+21
* Issue #16373: Prevent infinite recursion for ABC Set class comparisons.Serhiy Storchaka2013-12-061-2/+2
* Add missing docstrings to the collections ABCsRaymond Hettinger2013-03-241-0/+70
* Merged revisions 86857 via svnmerge fromAlexander Belopolsky2010-11-301-1/+1
* Merged revisions 84301 via svnmerge fromDaniel Stutzbach2010-08-241-9/+15
* Issue #9214: Fix set operations on KeysView and ItemsView.Raymond Hettinger2010-08-221-0/+8
* Merged revisions 82821 via svnmerge fromMark Dickinson2010-07-111-1/+9
* return NotImplemented from Mapping when comparing to a non-mapping #8729Benjamin Peterson2010-05-211-2/+3
* #7624: Fix isinstance(foo(), collections.Callable) for old-style classes.Florent Xicluna2010-03-081-10/+23
* Issue 6037: MutableSequence.__iadd__ should return self.Raymond Hettinger2009-05-181-0/+1
* Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.Raymond Hettinger2009-04-011-4/+3
* Give mapping views a usable repr.Raymond Hettinger2009-02-271-0/+3
* Backport 69934: Register xrange() as a Sequence.Raymond Hettinger2009-02-241-0/+1
* Issue 4920: Fixed next() vs __next__() issues in the ABCsRaymond Hettinger2009-01-281-2/+2
* Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard().Raymond Hettinger2009-01-131-2/+2
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+6
* Issue 3161: Missing import and test.Raymond Hettinger2008-06-231-0/+1
* #3057: Fix the MutableMapping ABC to use the 2.6 dict interface.Georg Brandl2008-06-071-9/+14
* Issue 2226: Callable checked for the wrong abstract method.Raymond Hettinger2008-03-031-1/+1
* Remove dependency on itertools -- a simple genexp suffices.Raymond Hettinger2008-03-031-2/+2
* Actually import itertools.Georg Brandl2008-03-031-0/+1
* Metaclass declaration is inheritedRaymond Hettinger2008-02-091-7/+0
* Merge with r60683.Raymond Hettinger2008-02-091-2/+2
* Make ABC containers inherit as documented.Raymond Hettinger2008-02-091-31/+5
* Fill-in missing Set comparisonsRaymond Hettinger2008-02-081-0/+13
* Speed-up __iter__() mixin method.Raymond Hettinger2008-02-081-6/+6
* Merge 60627.Raymond Hettinger2008-02-071-1/+6
* Sync-up with Py3k work.Raymond Hettinger2008-02-061-0/+13
* Missing returnRaymond Hettinger2008-01-311-0/+1
* Fix defect in __ixor__ which would get the wrongRaymond Hettinger2008-01-311-13/+6
* MutableSets support a remove() method.Raymond Hettinger2008-01-301-0/+6
* Add isdisjoint() to the Set/MutableSet ABCs.Raymond Hettinger2008-01-301-0/+6
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-0/+544