Skip to content

Commit 7c9065f

Browse files
committedMay 6, 2023
Visit and clear win console io type in iomodule.c
1 parent c03491a commit 7c9065f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎Modules/_io/_iomodule.c

+6
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,9 @@ iomodule_traverse(PyObject *mod, visitproc visit, void *arg) {
596596
Py_VISIT(state->PyStringIO_Type);
597597
Py_VISIT(state->PyTextIOBase_Type);
598598
Py_VISIT(state->PyTextIOWrapper_Type);
599+
#ifdef HAVE_WINDOWS_CONSOLE_IO
600+
Py_VISIT(state->PyWindowsConsoleIO_Type);
601+
#endif
599602
return 0;
600603
}
601604

@@ -622,6 +625,9 @@ iomodule_clear(PyObject *mod) {
622625
Py_CLEAR(state->PyStringIO_Type);
623626
Py_CLEAR(state->PyTextIOBase_Type);
624627
Py_CLEAR(state->PyTextIOWrapper_Type);
628+
#ifdef HAVE_WINDOWS_CONSOLE_IO
629+
Py_CLEAR(state->PyWindowsConsoleIO_Type);
630+
#endif
625631
return 0;
626632
}
627633

0 commit comments

Comments
 (0)
Please sign in to comment.