summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_frame.py
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2023-10-02 17:34:49 (GMT)
committerGitHub <noreply@github.com>2023-10-02 17:34:49 (GMT)
commit25bf0564c4317ac69df40e7fc360568c526dbc6d (patch)
tree046135f56ac390f5c6013ec163fb8cdb69987abb /Lib/test/test_frame.py
parent196738fc8693f3e1059c7872fbbc5578adc33f65 (diff)
downloadcpython-25bf0564c4317ac69df40e7fc360568c526dbc6d.zip
cpython-25bf0564c4317ac69df40e7fc360568c526dbc6d.tar.gz
cpython-25bf0564c4317ac69df40e7fc360568c526dbc6d.tar.bz2
[3.12] Fix typos in docs and comments (#109619) (#109621)
Fix typos in docs and comments (#109619) Co-authored-by: Heinz-Alexander Fuetterer <35225576+afuetterer@users.noreply.github.com>
Diffstat (limited to 'Lib/test/test_frame.py')
-rw-r--r--Lib/test/test_frame.py2
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: