diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-10-24 23:00:18 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-10-24 23:00:18 -0700 |
commit | 802883a386b30e4fdfd93dfef0dafa723fbeee15 (patch) | |
tree | 8e6fa517ca64d2f1cb84dc2278bb6d67f2624672 /Doc | |
parent | 407c8acd900ad19cd428b021c00f1a97387ce6f4 (diff) | |
parent | bc51a8af254ddc2c5074cc3914ffc818f401923c (diff) | |
download | cpython-git-802883a386b30e4fdfd93dfef0dafa723fbeee15.tar.gz |
merge 3.5 (#28525)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/gc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst index 4af16a9dfd..87d682445b 100644 --- a/Doc/library/gc.rst +++ b/Doc/library/gc.rst @@ -38,7 +38,7 @@ The :mod:`gc` module provides the following functions: Returns true if automatic collection is enabled. -.. function:: collect(generations=2) +.. function:: collect(generation=2) With no arguments, run a full collection. The optional argument *generation* may be an integer specifying which generation to collect (from 0 to 2). A |