Skip to content

Commit b028f58

Browse files
authored
Minor fixes to the formatting of the notes of Modules/gcmodule.c (GH-17247)
1 parent dcf1f83 commit b028f58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/gcmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ deduce_unreachable(PyGC_Head *base, PyGC_Head *unreachable) {
10881088
* NOTE: This used to move the reachable objects into a reachable
10891089
* set instead. But most things usually turn out to be reachable,
10901090
* so it's more efficient to move the unreachable things. See note
1091-
^ [REACHABLE OR UNREACHABLE?} at the file end.
1091+
^ [REACHABLE OR UNREACHABLE?] at the file end.
10921092
*/
10931093
gc_list_init(unreachable);
10941094
move_unreachable(base, unreachable); // gc_prev is pointer again
@@ -2188,7 +2188,7 @@ PyObject_GC_Del(void *op)
21882188
/* ------------------------------------------------------------------------
21892189
Notes
21902190
2191-
[REACHABLE OR UNREACHABLE?}
2191+
[REACHABLE OR UNREACHABLE?]
21922192
21932193
It "sounds slick" to move the unreachable objects, until you think about
21942194
it - the reason it pays isn't actually obvious.

0 commit comments

Comments
 (0)