Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Small cleanup and optimization | Raymond Hettinger | 2012-06-10 | 1 | -2/+2 |
| | |||||
* | Minor reformatting (wrap fat lines, etc.) and create an __main__ file | Raymond Hettinger | 2012-06-10 | 2 | -51/+53 |
| | |||||
* | Close #14386: Register types.MappingProxyType as a Mapping | Victor Stinner | 2012-04-19 | 1 | -1/+3 |
| | |||||
* | Clarify that the purpose of computing all the miscellaneous collection types ↵ | Raymond Hettinger | 2012-04-05 | 1 | -3/+7 |
| | | | | is to register them with the appropriate ABCs. | ||||
* | Merge | Raymond Hettinger | 2012-01-26 | 1 | -1/+1 |
| | |||||
* | Merge | Raymond Hettinger | 2011-11-05 | 1 | -2/+6 |
| | |||||
* | Issue #13121: Support in-place math operators for collections.Counter(). | Raymond Hettinger | 2011-10-19 | 1 | -0/+63 |
| | |||||
* | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). | Ezio Melotti | 2011-09-28 | 1 | -1/+1 |
| | |||||
* | add ChainMap to __all__ (closes #12959) | Benjamin Peterson | 2011-09-11 | 1 | -1/+1 |
| | | | | Thanks July Tikhonov. | ||||
* | Add support for unary plus and unary minus to collections.Counter() | Raymond Hettinger | 2011-08-09 | 1 | -0/+11 |
| | |||||
* | merge | Raymond Hettinger | 2011-06-03 | 1 | -0/+2 |
| | |||||
* | Userlist.copy() wasn't returning a UserList. | Raymond Hettinger | 2011-05-05 | 1 | -1/+1 |
| | |||||
* | Minor clean-ups to docstrings, comments, and var names. | Raymond Hettinger | 2011-04-24 | 1 | -16/+21 |
| | |||||
* | Minor text rearrangement. | Raymond Hettinger | 2011-04-20 | 1 | -10/+10 |
| | |||||
* | Issue #11875: Alter the previous fix to work better with subclasses | Raymond Hettinger | 2011-04-20 | 1 | -1/+1 |
| | |||||
* | Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. | Raymond Hettinger | 2011-04-19 | 1 | -3/+2 |
| | |||||
* | Rework multiset methods to use less memory and to make fewer calls to __hash__. | Raymond Hettinger | 2011-04-18 | 1 | -12/+19 |
| | |||||
* | Fix minor subclassing issue with collections.Counter | Raymond Hettinger | 2011-04-15 | 1 | -2/+2 |
| | |||||
* | Add tests for _source to importable and exec'able. | Raymond Hettinger | 2011-03-24 | 1 | -4/+3 |
| | | | | | | | | Move __name__ back out of the template; the responsibility for setting __name__ lies with the caller (which knows something about the new namespace), not with the class definition (which doesn't know about the namespace it is being built in). | ||||
* | Minor clean-ups. | Raymond Hettinger | 2011-03-23 | 1 | -3/+4 |
| | |||||
* | Expose the namedtuple source with a _source attribute. | Raymond Hettinger | 2011-03-23 | 1 | -5/+6 |
| | |||||
* | Move namespace setup inside the template. | Raymond Hettinger | 2011-03-23 | 1 | -2/+7 |
| | |||||
* | Minor named tuple clean-ups. | Raymond Hettinger | 2011-03-23 | 1 | -10/+9 |
| | |||||
* | Factor-out named tuple class definition template strings. | Raymond Hettinger | 2011-03-23 | 1 | -51/+60 |
| | |||||
* | Clean-up whitespace. | Raymond Hettinger | 2011-03-22 | 1 | -7/+7 |
| | |||||
* | Replace **locals() with explicit field names. | Raymond Hettinger | 2011-03-22 | 1 | -4/+8 |
| | |||||
* | Simplify the named tuple template by using the new string format syntax. | Raymond Hettinger | 2011-03-22 | 1 | -15/+15 |
| | |||||
* | Improve readability by replacing '\n' in template with real newlines. | Raymond Hettinger | 2011-03-22 | 1 | -9/+19 |
| | |||||
* | Issue #11333: Add __slots__ to the collections ABCs. | Raymond Hettinger | 2011-03-22 | 1 | -0/+26 |
| | |||||
* | #11515: Merge with 3.2. | Ezio Melotti | 2011-03-15 | 1 | -1/+1 |
| | |||||
* | Issue #11388: Added a clear() method to MutableSequence | Eli Bendersky | 2011-03-04 | 1 | -0/+7 |
| | |||||
* | Add __bool__ method. Add tests. Fix-up broken test. | Raymond Hettinger | 2011-02-26 | 1 | -0/+3 |
| | |||||
* | Issue #11297: Add collections.ChainMap() | Raymond Hettinger | 2011-02-26 | 1 | -1/+1 |
| | |||||
* | Issue #10516: adding list.clear() and list.copy() methods | Eli Bendersky | 2011-02-25 | 1 | -0/+2 |
| | |||||
* | Add tests for the _ChainMap helper class. | Raymond Hettinger | 2011-02-23 | 1 | -0/+9 |
| | |||||
* | Factor-out common code for helper classes. | Raymond Hettinger | 2011-02-22 | 1 | -1/+1 |
| | |||||
* | Issue #11085: Moved collections abstract base classes into a separate module | Raymond Hettinger | 2011-02-22 | 2 | -0/+1653 |
called collections.abc, following the pattern used by importlib.abc. For backwards compatibility, the names continue to also be imported into the collections module. |