summaryrefslogtreecommitdiffstats
path: root/Lib/_abcoll.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 81414 via svnmerge fromBenjamin Peterson2010-05-211-2/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81414 | benjamin.peterson | 2010-05-21 15:51:45 -0500 (Fri, 21 May 2010) | 1 line return NotImplemented from Mapping when comparing to a non-mapping #8729 ........
* Merged revisions 78800 via svnmerge fromFlorent Xicluna2010-03-231-10/+23
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78800 | florent.xicluna | 2010-03-08 16:20:28 +0100 (lun, 08 mar 2010) | 2 lines #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. ........
* 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
|
* 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
| | | | | for Iterator and MutableSet. Also added thorough test for required abstractmethods.
* Merged revisions ↵Georg Brandl2009-01-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 68521,68527,68534-68536,68540,68547,68552,68563,68570,68572,68575,68579-68580,68584 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68521 | hirokazu.yamamoto | 2009-01-11 04:28:13 +0100 (So, 11 Jan 2009) | 1 line Fixed version number in build_ssl.bat. ........ r68527 | martin.v.loewis | 2009-01-11 10:43:55 +0100 (So, 11 Jan 2009) | 2 lines Issue #4895: Use _strdup on Windows CE. ........ r68534 | gregory.p.smith | 2009-01-11 18:53:33 +0100 (So, 11 Jan 2009) | 2 lines correct email address ........ r68535 | gregory.p.smith | 2009-01-11 18:57:54 +0100 (So, 11 Jan 2009) | 9 lines Update the documentation for binascii and zlib crc32/adler32 functions to better describe the signed vs unsigned return value behavior on different platforms and versions of python. Mention the workaround to make them all return the same thing by using & 0xffffffff. Fixes issue4903. Also needs to be merged into release26-maint, release30-maint, & py3k. ........ r68536 | benjamin.peterson | 2009-01-11 20:48:15 +0100 (So, 11 Jan 2009) | 1 line add email addresses ........ r68540 | martin.v.loewis | 2009-01-12 08:57:11 +0100 (Mo, 12 Jan 2009) | 2 lines Issue #4915: Port sysmodule to Windows CE. ........ r68547 | kristjan.jonsson | 2009-01-12 19:09:27 +0100 (Mo, 12 Jan 2009) | 1 line Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module. ........ r68552 | vinay.sajip | 2009-01-12 21:36:18 +0100 (Mo, 12 Jan 2009) | 1 line Minor changes/corrections in markup. ........ r68563 | benjamin.peterson | 2009-01-13 02:49:10 +0100 (Di, 13 Jan 2009) | 1 line small logic correction ........ r68570 | raymond.hettinger | 2009-01-13 10:08:32 +0100 (Di, 13 Jan 2009) | 5 lines Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard(). Needs to be backported to 2.6 and forward ported to 3.0 and 3.1. ........ r68572 | andrew.kuchling | 2009-01-13 14:40:54 +0100 (Di, 13 Jan 2009) | 1 line Note that first coord. is left alone ........ r68575 | thomas.heller | 2009-01-13 18:32:28 +0100 (Di, 13 Jan 2009) | 1 line Fix refcount leak in error cases. Bug found by coverity. ........ r68579 | benjamin.peterson | 2009-01-13 22:42:23 +0100 (Di, 13 Jan 2009) | 1 line make bytearrayobject.o depend on the stringlib #4936 ........ r68580 | benjamin.peterson | 2009-01-13 22:43:11 +0100 (Di, 13 Jan 2009) | 1 line add bytearrayobject.h to PYTHON_HEADERS ........ r68584 | benjamin.peterson | 2009-01-13 23:22:41 +0100 (Di, 13 Jan 2009) | 1 line de-spacify ........
* Issue 2235: Py3k warnings are now emitted for classes that will no longer ↵Nick Coghlan2008-08-111-0/+6
| | | | inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings.
* 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
| | | | | | answer if the input iterable had a duplicate element (two calls to toggle() reverse each other). Borrow the correct code from sets.py.
* 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
With some changes of my own thrown in (e.g. backport of r58107).