Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbfc129 commit 236a547Copy full SHA for 236a547
2 files changed
Include/frameobject.h
@@ -36,7 +36,7 @@ typedef struct _frame {
36
non-generator frames. See the save_exc_state and swap_exc_state
37
functions in ceval.c for details of their use. */
38
PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
39
- /* Borrowed referenced to a generator, or NULL */
+ /* Borrowed reference to a generator, or NULL */
40
PyObject *f_gen;
41
42
PyThreadState *f_tstate;
Lib/test/test_frame.py
@@ -96,7 +96,7 @@ def g():
96
97
@support.cpython_only
98
def test_clear_refcycles(self):
99
- # .clear() doesn't leave any refcycle behin
+ # .clear() doesn't leave any refcycle behind
100
with support.disable_gc():
101
class C:
102
pass
0 commit comments