diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-11-09 19:54:06 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-11-09 19:54:06 (GMT) |
commit | 774348c8d6a6eaefe8d12a7c8d309801b73f7386 (patch) | |
tree | 71a94ca5793d57e83a0c3a858289b67a328bed78 /Modules | |
parent | cc40cede7a17cdeea20b425c66351dad62771a23 (diff) | |
download | cpython-774348c8d6a6eaefe8d12a7c8d309801b73f7386.zip cpython-774348c8d6a6eaefe8d12a7c8d309801b73f7386.tar.gz cpython-774348c8d6a6eaefe8d12a7c8d309801b73f7386.tar.bz2 |
Fix typo.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/gcmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index bae2653..c0c091e 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -96,7 +96,7 @@ During a collection, gc_refs can temporarily take on other states: subtract_refs() then adjusts gc_refs so that it equals the number of times an object is referenced directly from outside the generation being collected. - gc_refs reamins >= 0 throughout these steps. + gc_refs remains >= 0 throughout these steps. GC_TENTATIVELY_UNREACHABLE move_unreachable() then moves objects not reachable (whether directly or |