summaryrefslogtreecommitdiffstats
path: root/Lib/collections
Commit message (Collapse)AuthorAgeFilesLines
* mergeRaymond Hettinger2015-09-081-3/+2
|\
| * Fix whitespace in comment.Raymond Hettinger2015-09-081-3/+2
| |
* | mergeRaymond Hettinger2015-08-301-10/+1
|\ \ | |/
| * Issue #24931: Resolve __dict__ conflict in namedtuple subclasses.Raymond Hettinger2015-08-301-10/+1
| |
* | Issue #23509: Speed up Counter operatorsRaymond Hettinger2015-05-301-2/+10
| | | | | | | | (Based on patch by Serhiy Storchaka.)
* | Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-301-2/+19
| |
* | Issue 22189: Add missing methods to UserStringRaymond Hettinger2015-05-221-0/+10
| |
* | Issue 23704: Add index(), copy(), and insert() to deques. Register deques ↵Raymond Hettinger2015-03-211-0/+2
| | | | | | | | as a MutableSequence.
* | Issue #23326: Removed __ne__ implementations. Since fixing default __ne__Serhiy Storchaka2015-01-311-5/+0
| | | | | | | | implementation in issue #21408 they are redundant.
* | Issue #22609: Revert changes in UserDict. They conflicted with existing tests.Serhiy Storchaka2014-11-271-8/+1
|\ \ | |/
| * Issue #22609: Revert changes in UserDict. They conflicted with existing tests.Serhiy Storchaka2014-11-271-8/+1
| |
* | Issue #22609: Constructors and update methods of mapping classes in theSerhiy Storchaka2014-11-271-8/+39
|\ \ | |/ | | | | collections module now accept the self keyword argument.
| * Issue #22609: Constructors and update methods of mapping classes in theSerhiy Storchaka2014-11-271-8/+39
| | | | | | | | collections module now accept the self keyword argument.
* | mergeRaymond Hettinger2014-06-241-0/+3
|\ \ | |/
| * Issue 21832: Require named tuple inputs to be exact stringsRaymond Hettinger2014-06-241-0/+3
| |
* | Issue #19414: Have the OrderedDict mark deleted links as unusable.Raymond Hettinger2014-05-041-0/+2
| | | | | | | | | | This gives an earlier and more visible failure if a link is deleted during iteration.
* | Issue #19505: The items, keys, and values views of OrderedDict now supportSerhiy Storchaka2014-04-041-3/+30
|/ | | | reverse iteration using reversed().
* Clean-up docstringRaymond Hettinger2014-03-201-3/+1
|
* whitespace cleanupChristian Heimes2013-10-131-1/+0
|
* Issue #19218: Add facade collections.abcChristian Heimes2013-10-131-0/+3
|
* Issue #19218: Rename collections.abc to _collections_abc in order to speed ↵Christian Heimes2013-10-132-731/+3
| | | | up interpreter start
* Close #18690: register memoryview with Sequence ABCNick Coghlan2013-10-021-0/+1
|
* #18466: merge with 3.3.Ezio Melotti2013-08-171-1/+1
|\
| * #18466: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
| |
* | Fix typo on MutableSequence docstring.Guido van Rossum2013-07-251-1/+1
| |
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
| |
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-141-1/+1
| | | | | | | | ModuleNotFoundError.
* | Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickledSerhiy Storchaka2013-05-211-4/+1
| | | | | | | | size and pickling time.
* | Undo the deprecation of _asdict().Raymond Hettinger2013-05-181-3/+0
| | | | | | | | Backed out changeset c4ca39bece9d
* | Deprecate nametuple._asdict()Raymond Hettinger2013-05-181-0/+3
| |
* | mergeRaymond Hettinger2013-05-171-12/+17
|\ \ | |/
| * Update docstring for _asdict() to indicate it is obsolete.Raymond Hettinger2013-05-171-12/+17
| | | | | | | | | | | | Use the cleaner looking @property style for __dict__. Move _replace() to be just after make() to indicate that it is a core method on named tuples.
* | mergeRaymond Hettinger2013-05-171-4/+1
|\ \ | |/
| * Remove unnecessary exception handler.Raymond Hettinger2013-05-171-4/+1
| |
* | Issue #15528: Add weakref.finalize to support finalization usingRichard Oudkerk2013-05-051-1/+1
| | | | | | | | | | | | | | | | | | weakref callbacks. This is 2e446e87ac5b except that collections/__init__.py has been modified to import proxy from _weakref instead of weakref. This eliminates an import cycle which seems to cause a problem on Unix but not Windows.
* | mergeRaymond Hettinger2013-05-031-0/+4
|\ \ | |/
| * Issue #15535: Fix pickling of named tuples.Raymond Hettinger2013-05-031-0/+4
| |
* | mergeRaymond Hettinger2013-03-241-0/+68
|\ \ | |/
| * Add missing docstrings to the collections ABCsRaymond Hettinger2013-03-241-0/+68
| |
| * Backport improved dict comparison logicRaymond Hettinger2013-03-231-2/+1
| |
* | MergeRaymond Hettinger2013-03-021-9/+4
|\ \ | |/
| * Issue #17331: Use isidentifier() instead of isalnum() to check for valid ↵Raymond Hettinger2013-03-021-9/+4
| | | | | | | | identifiers.
* | Closes #16613: Added optional mapping argument to ChainMap.new_child.Vinay Sajip2013-01-111-3/+8
| |
* | Improve OrderedDict equality test.Raymond Hettinger2012-12-071-2/+1
| |
* | Merge issue #16373: Prevent infinite recursion for ABC Set class operations.Andrew Svetlov2012-11-011-2/+2
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Merge issue #16373: Prevent infinite recursion for ABC Set class operations.Andrew Svetlov2012-11-011-2/+2
| | | | | | | | Patch by Serhiy Storchaka.
* | utilize yield fromPhilip Jenvey2012-10-011-2/+1
|/
* Small cleanup and optimizationRaymond Hettinger2012-06-101-2/+2
|
* Minor reformatting (wrap fat lines, etc.) and create an __main__ fileRaymond Hettinger2012-06-102-51/+53
|
* Close #14386: Register types.MappingProxyType as a MappingVictor Stinner2012-04-191-1/+3
|