index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
library
/
collections.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40651: Improve LRU recipe in the OrderedDict documentation (GH-#20139)
qudongfang
2020-05-18
1
-0/+2
*
bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832)
Curtis Bucher
2020-03-23
1
-0/+3
*
bpo-36144: OrderedDict Union (PEP 584) (#18967)
Brandt Bucher
2020-03-13
1
-0/+4
*
bpo-36144: Implement defaultdict union (GH-18729)
Brandt Bucher
2020-03-06
1
-0/+4
*
bpo-39674: Update collections ABC deprecation doc (GH-18747)
Victor Stinner
2020-03-03
1
-1/+1
*
bpo-39674: Revert "bpo-25988: Do not expose abstract collection classes in th...
Victor Stinner
2020-02-18
1
-1/+1
*
bpo-38771: Explict test for None in code example (GH-17108)
Jonathan Scholbach
2019-11-12
1
-1/+1
*
bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)
Serhiy Storchaka
2019-06-01
1
-1/+1
*
bpo-36953: Delay removal of ABCs from collections. (GH-13409)
Matthias Bussonnier
2019-05-30
1
-2/+2
*
Remove workaround for defaults in namedtuple now that we have the defaults pa...
Andre Delfino
2019-05-21
1
-9/+0
*
Simplify the ``LastUpdatedOrderedDict`` example recipe (GH-13296)
wim glenn
2019-05-14
1
-1/+1
*
Revert "Minor doc improvement (GH-10341)" (GH-12597)
Raymond Hettinger
2019-03-28
1
-1/+1
*
Minor doc improvement (GH-10341)
Andre Delfino
2019-03-27
1
-1/+1
*
bpo-36321: Fix misspelled attribute in namedtuple() (GH-12375)
Raymond Hettinger
2019-03-18
1
-2/+2
*
Update the seealso entries for namedtuple() (GH-12373)
Raymond Hettinger
2019-03-16
1
-7/+10
*
Minor grammar fix in docs (GH-12371)
Raymond Hettinger
2019-03-16
1
-1/+1
*
bpo-36057 Update docs and tests for ordering in collections.Counter [no behav...
Raymond Hettinger
2019-02-21
1
-5/+10
*
bpo-36060: Document how collections.ChainMap() determines iteration order (GH...
Raymond Hettinger
2019-02-21
1
-0/+15
*
bpo-36059: Update OrderedDict() docs to reflect that regular dicts are now or...
Raymond Hettinger
2019-02-21
1
-43/+53
*
bpo-31982: Improve sequence of presentation in ChainMap docs (GH-11960)
Raymond Hettinger
2019-02-20
1
-1/+1
*
bpo-35864: Replace OrderedDict with regular dict in namedtuple() (#11708)
Raymond Hettinger
2019-01-31
1
-1/+8
*
dict insertion order is guaranteed since 3.7 (GH-10431)
Andrés Delfino
2018-11-11
1
-1/+1
*
bpo-35118: Improve docs regarding indexing (GH-10265)
Windson yang
2018-11-04
1
-3/+3
*
Fix missing line from example shell session (GH-9143)
Raymond Hettinger
2018-09-11
1
-0/+1
*
Corrected link targets in collections.rst (GH-1052)
Michael Seifert
2018-03-26
1
-24/+31
*
Fix typo -- missing "not" (GH-5528)
Raymond Hettinger
2018-02-04
1
-1/+1
*
bpo-32739: Show default value for rotate() (GH-5485)
Raymond Hettinger
2018-02-03
1
-4/+7
*
bpo-25988: Deprecate exposing collections.abc in collections GH-5414
Raymond Hettinger
2018-01-29
1
-2/+2
*
bpo-32320: Add default value support to collections.namedtuple() (#4859)
Raymond Hettinger
2018-01-11
1
-1/+24
*
bpo-32099 Add deque variant of roundrobin() recipe (#4497)
Raymond Hettinger
2017-11-23
1
-0/+19
*
bpo-28638: Optimize namedtuple() creation time by minimizing use of exec() (#...
Raymond Hettinger
2017-09-10
1
-14/+4
*
bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173)
Ben Hoyt
2017-06-13
1
-1/+1
*
bpo-28851: Improve namedtuple documentation (GH-1274)
csabella
2017-04-25
1
-3/+3
*
Update OrderedDict docs to reflect acceptance of PEP 468
Raymond Hettinger
2017-01-08
1
-4/+5
*
Issue #19795: Mark up None as literal text.
Serhiy Storchaka
2016-10-19
1
-2/+2
|
\
|
*
Issue #19795: Mark up None as literal text.
Serhiy Storchaka
2016-10-19
1
-2/+2
*
|
Issue #17941: Add a *module* parameter to collections.namedtuple()
Raymond Hettinger
2016-09-12
1
-1/+6
*
|
Add cross-reference to typing.NamedTuple. Doctest two more examples.
Raymond Hettinger
2016-08-16
1
-4/+10
*
|
merge
Raymond Hettinger
2016-08-16
1
-5/+0
|
\
\
|
|
/
|
*
Remove duplicate of the entry in the seealso section
Raymond Hettinger
2016-08-16
1
-5/+0
*
|
Issue #25628: Make namedtuple "rename" and "verbose" parameters keyword-only.
Raymond Hettinger
2016-08-16
1
-2/+6
*
|
Closes #27205: Merge with 3.5
Zachary Ware
2016-08-09
1
-15/+15
|
\
\
|
|
/
|
*
Issue #27205: Fix doctests in Doc/library/collections.rst.
Zachary Ware
2016-08-09
1
-15/+15
*
|
Merge Issue #22558.
Terry Jan Reedy
2016-06-11
1
-2/+3
|
\
\
|
|
/
|
*
Issue #22558: Add remaining doc links to source code for Python-coded modules.
Terry Jan Reedy
2016-06-11
1
-2/+3
*
|
Issue #27125: Merge typo fixes from 3.5
Martin Panter
2016-05-29
1
-1/+1
|
\
\
|
|
/
|
*
Issue #27125: Fix various errors like “will [be] inherited”
Martin Panter
2016-05-29
1
-1/+1
*
|
Expand abbreviations FIFO and LIFO.
Serhiy Storchaka
2016-05-16
1
-2/+3
*
|
Issue #23921: Standardized documentation whitespace formatting.
Serhiy Storchaka
2016-05-10
1
-1/+1
|
\
\
|
|
/
|
*
Issue #23921: Standardized documentation whitespace formatting.
Serhiy Storchaka
2016-05-10
1
-1/+1
[next]