Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c07bda0a
Commit
c07bda0a
authored
Apr 16, 2012
by
Brian Curtin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct warnings when building the docs for the nonexistet :arg: role. Changed to asterisks.
parent
bd439740
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Doc/library/gc.rst
Doc/library/gc.rst
+5
-5
No files found.
Doc/library/gc.rst
View file @
c07bda0a
...
...
@@ -187,23 +187,23 @@ values but should not rebind them):
A list of callbacks that will be invoked by the garbage collector before and
after collection. The callbacks will be called with two arguments,
:arg:`phase` and :arg:`info`
.
*phase* and *info*
.
:arg:`phase`
can one of two values:
*phase*
can one of two values:
"start": The garbage collection is about to start.
"stop": The garbage collection has finished.
:arg:`info`
provides more information for the callback. The following
*info*
provides more information for the callback. The following
keys are currently defined:
"generation": The oldest generation being collected.
"collected": When
:arg:`phase`
is "stop", the number of objects
"collected": When
*phase*
is "stop", the number of objects
successfully collected.
"uncollectable": when
:arg:`phase`
is "stop", the number of objects
"uncollectable": when
*phase*
is "stop", the number of objects
that could not be collected and were put in :data:`garbage`.
Applications can add their own callbacks to this list. The primary
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment