Commit 14cf5152 authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #18665: fix typos. Patch by Vajrasky Kok.

parent ce60d88e
...@@ -36,7 +36,7 @@ typedef struct _frame { ...@@ -36,7 +36,7 @@ typedef struct _frame {
non-generator frames. See the save_exc_state and swap_exc_state non-generator frames. See the save_exc_state and swap_exc_state
functions in ceval.c for details of their use. */ functions in ceval.c for details of their use. */
PyObject *f_exc_type, *f_exc_value, *f_exc_traceback; PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
/* Borrowed referenced to a generator, or NULL */ /* Borrowed reference to a generator, or NULL */
PyObject *f_gen; PyObject *f_gen;
PyThreadState *f_tstate; PyThreadState *f_tstate;
......
...@@ -96,7 +96,7 @@ class ClearTest(unittest.TestCase): ...@@ -96,7 +96,7 @@ class ClearTest(unittest.TestCase):
@support.cpython_only @support.cpython_only
def test_clear_refcycles(self): def test_clear_refcycles(self):
# .clear() doesn't leave any refcycle behin # .clear() doesn't leave any refcycle behind
with support.disable_gc(): with support.disable_gc():
class C: class C:
pass pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment