Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix out-of-date comment | Raymond Hettinger | 2016-02-25 | 1 | -1/+1 |
| | |||||
* | merge | Raymond Hettinger | 2015-11-24 | 1 | -1/+1 |
|\ | |||||
| * | Fix non-ascii character | Raymond Hettinger | 2015-11-24 | 1 | -1/+1 |
| | | |||||
* | | merge | Raymond Hettinger | 2015-11-24 | 1 | -0/+16 |
|\ \ | |/ | |||||
| * | Add a missing docstring | Raymond Hettinger | 2015-11-24 | 1 | -0/+16 |
| | | |||||
* | | Issue #22609: Constructor of collections.UserDict now accepts the self keyword | Serhiy Storchaka | 2015-09-29 | 1 | -1/+16 |
|\ \ | |/ | | | | | argument. | ||||
| * | Issue #22609: Constructor of collections.UserDict now accepts the self keyword | Serhiy Storchaka | 2015-09-29 | 1 | -1/+16 |
| |\ |/ / | | | | | argument. | ||||
| * | Issue #22609: Constructor of collections.UserDict now accepts the self keyword | Serhiy Storchaka | 2015-09-29 | 1 | -1/+16 |
| | | | | | | | | argument. | ||||
* | | merge | Raymond Hettinger | 2015-09-08 | 1 | -3/+2 |
|\ \ | |/ | |||||
| * | Fix whitespace in comment. | Raymond Hettinger | 2015-09-08 | 1 | -3/+2 |
| | | |||||
* | | merge | Raymond Hettinger | 2015-08-30 | 1 | -10/+1 |
|\ \ | |/ | |||||
| * | Issue #24931: Resolve __dict__ conflict in namedtuple subclasses. | Raymond Hettinger | 2015-08-30 | 1 | -10/+1 |
| | | |||||
* | | Issue #23509: Speed up Counter operators | Raymond Hettinger | 2015-05-30 | 1 | -2/+10 |
| | | | | | | | | (Based on patch by Serhiy Storchaka.) | ||||
* | | Issue #16991: Add a C implementation of collections.OrderedDict. | Eric Snow | 2015-05-30 | 1 | -2/+19 |
| | | |||||
* | | Issue 22189: Add missing methods to UserString | Raymond Hettinger | 2015-05-22 | 1 | -0/+10 |
| | | |||||
* | | Issue 23704: Add index(), copy(), and insert() to deques. Register deques ↵ | Raymond Hettinger | 2015-03-21 | 1 | -0/+2 |
| | | | | | | | | as a MutableSequence. | ||||
* | | Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ | Serhiy Storchaka | 2015-01-31 | 1 | -5/+0 |
| | | | | | | | | implementation in issue #21408 they are redundant. | ||||
* | | Issue #22609: Revert changes in UserDict. They conflicted with existing tests. | Serhiy Storchaka | 2014-11-27 | 1 | -8/+1 |
|\ \ | |/ | |||||
| * | Issue #22609: Revert changes in UserDict. They conflicted with existing tests. | Serhiy Storchaka | 2014-11-27 | 1 | -8/+1 |
| | | |||||
* | | Issue #22609: Constructors and update methods of mapping classes in the | Serhiy Storchaka | 2014-11-27 | 1 | -8/+39 |
|\ \ | |/ | | | | | collections module now accept the self keyword argument. | ||||
| * | Issue #22609: Constructors and update methods of mapping classes in the | Serhiy Storchaka | 2014-11-27 | 1 | -8/+39 |
| | | | | | | | | collections module now accept the self keyword argument. | ||||
* | | merge | Raymond Hettinger | 2014-06-24 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue 21832: Require named tuple inputs to be exact strings | Raymond Hettinger | 2014-06-24 | 1 | -0/+3 |
| | | |||||
* | | Issue #19414: Have the OrderedDict mark deleted links as unusable. | Raymond Hettinger | 2014-05-04 | 1 | -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 support | Serhiy Storchaka | 2014-04-04 | 1 | -3/+30 |
|/ | | | | reverse iteration using reversed(). | ||||
* | Clean-up docstring | Raymond Hettinger | 2014-03-20 | 1 | -3/+1 |
| | |||||
* | whitespace cleanup | Christian Heimes | 2013-10-13 | 1 | -1/+0 |
| | |||||
* | Issue #19218: Add facade collections.abc | Christian Heimes | 2013-10-13 | 1 | -0/+3 |
| | |||||
* | Issue #19218: Rename collections.abc to _collections_abc in order to speed ↵ | Christian Heimes | 2013-10-13 | 2 | -731/+3 |
| | | | | up interpreter start | ||||
* | Close #18690: register memoryview with Sequence ABC | Nick Coghlan | 2013-10-02 | 1 | -0/+1 |
| | |||||
* | #18466: merge with 3.3. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
|\ | |||||
| * | #18466: fix more typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
| | | |||||
* | | Fix typo on MutableSequence docstring. | Guido van Rossum | 2013-07-25 | 1 | -1/+1 |
| | | |||||
* | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -1/+1 |
| | | |||||
* | | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-14 | 1 | -1/+1 |
| | | | | | | | | ModuleNotFoundError. | ||||
* | | Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickled | Serhiy Storchaka | 2013-05-21 | 1 | -4/+1 |
| | | | | | | | | size and pickling time. | ||||
* | | Undo the deprecation of _asdict(). | Raymond Hettinger | 2013-05-18 | 1 | -3/+0 |
| | | | | | | | | Backed out changeset c4ca39bece9d | ||||
* | | Deprecate nametuple._asdict() | Raymond Hettinger | 2013-05-18 | 1 | -0/+3 |
| | | |||||
* | | merge | Raymond Hettinger | 2013-05-17 | 1 | -12/+17 |
|\ \ | |/ | |||||
| * | Update docstring for _asdict() to indicate it is obsolete. | Raymond Hettinger | 2013-05-17 | 1 | -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. | ||||
* | | merge | Raymond Hettinger | 2013-05-17 | 1 | -4/+1 |
|\ \ | |/ | |||||
| * | Remove unnecessary exception handler. | Raymond Hettinger | 2013-05-17 | 1 | -4/+1 |
| | | |||||
* | | Issue #15528: Add weakref.finalize to support finalization using | Richard Oudkerk | 2013-05-05 | 1 | -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. | ||||
* | | merge | Raymond Hettinger | 2013-05-03 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #15535: Fix pickling of named tuples. | Raymond Hettinger | 2013-05-03 | 1 | -0/+4 |
| | | |||||
* | | merge | Raymond Hettinger | 2013-03-24 | 1 | -0/+68 |
|\ \ | |/ | |||||
| * | Add missing docstrings to the collections ABCs | Raymond Hettinger | 2013-03-24 | 1 | -0/+68 |
| | | |||||
| * | Backport improved dict comparison logic | Raymond Hettinger | 2013-03-23 | 1 | -2/+1 |
| | | |||||
* | | Merge | Raymond Hettinger | 2013-03-02 | 1 | -9/+4 |
|\ \ | |/ | |||||
| * | Issue #17331: Use isidentifier() instead of isalnum() to check for valid ↵ | Raymond Hettinger | 2013-03-02 | 1 | -9/+4 |
| | | | | | | | | identifiers. |