diff options
author | Heinz-Alexander Fuetterer <35225576+afuetterer@users.noreply.github.com> | 2023-09-20 16:58:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 16:58:23 (GMT) |
commit | ef6d475db3af4d30a3104fa6301dcd36c71eacab (patch) | |
tree | b103eebc681bc79f345aabbeaa7802c1d5eda093 /Lib/test/test_frame.py | |
parent | 32ffe58c1298b0082ff6fe96ad45c4efe49f4338 (diff) | |
download | cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.zip cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.tar.gz cpython-ef6d475db3af4d30a3104fa6301dcd36c71eacab.tar.bz2 |
Fix typos in docs and comments (#109619)
Diffstat (limited to 'Lib/test/test_frame.py')
-rw-r--r-- | Lib/test/test_frame.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_frame.py b/Lib/test/test_frame.py index 6bb0144..9491c7f 100644 --- a/Lib/test/test_frame.py +++ b/Lib/test/test_frame.py @@ -322,7 +322,7 @@ class TestIncompleteFrameAreInvisible(unittest.TestCase): sneaky_frame_object = None gc.enable() next(g) - # g.gi_frame should be the the frame object from the callback (the + # g.gi_frame should be the frame object from the callback (the # one that was *requested* second, but *created* first): self.assertIs(g.gi_frame, sneaky_frame_object) finally: |