bpo-36854: gcmodule.c gets its state from tstate by vstinner · Pull Request #17285 · python/cpython (original) (raw)
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation0 Commits1 Checks0 Files changed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
[ Show hidden characters]({{ revealButtonHref }})
- Add GCState type for readability
- gcmodule.c now gets its gcstate from tstate
- _PyGC_DumpShutdownStats() now expects tstate rather than runtime
- Rename "state" to "gcstate" for readability: to avoid confusion
between "state" and "tstate" for example. - collect() now only expects tstate: it gets gcstate from tstate.
- Pass tstate to _PyErr_xxx() functions
https://bugs.python.org/issue36854
- Add GCState type for readability
- gcmodule.c now gets its gcstate from tstate
- _PyGC_DumpShutdownStats() now expects tstate rather than runtime
- Rename "state" to "gcstate" for readability: to avoid confusion between "state" and "tstate" for example.
- collect() now only expects tstate: it gets gcstate from tstate.
- Pass tstate to _PyErr_xxx() functions
jacobneiltaylor pushed a commit to jacobneiltaylor/cpython that referenced this pull request
- Add GCState type for readability
- gcmodule.c now gets its gcstate from tstate
- _PyGC_DumpShutdownStats() now expects tstate rather than runtime
- Rename "state" to "gcstate" for readability: to avoid confusion between "state" and "tstate" for example.
- collect() now only expects tstate: it gets gcstate from tstate.
- Pass tstate to _PyErr_xxx() functions
shihai1991 pushed a commit to shihai1991/cpython that referenced this pull request
- Add GCState type for readability
- gcmodule.c now gets its gcstate from tstate
- _PyGC_DumpShutdownStats() now expects tstate rather than runtime
- Rename "state" to "gcstate" for readability: to avoid confusion between "state" and "tstate" for example.
- collect() now only expects tstate: it gets gcstate from tstate.
- Pass tstate to _PyErr_xxx() functions
oraluben pushed a commit to oraluben/cpython that referenced this pull request
- Add GCState type for readability
- gcmodule.c now gets its gcstate from tstate
- _PyGC_DumpShutdownStats() now expects tstate rather than runtime
- Rename "state" to "gcstate" for readability: to avoid confusion between "state" and "tstate" for example.
- collect() now only expects tstate: it gets gcstate from tstate.
- Pass tstate to _PyErr_xxx() functions
Reviewers
brettcannon Awaiting requested review from brettcannon
encukou Awaiting requested review from encukou
ericsnowcurrently Awaiting requested review from ericsnowcurrently
ncoghlan Awaiting requested review from ncoghlan
pablogsal Awaiting requested review from pablogsal
warsaw Awaiting requested review from warsaw