Skip to content

Commit 64e5315

Browse files
committed
fix unwindng/unwinding typo
1 parent 7e05d50 commit 64e5315

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Lib/test/test_pdb.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1986,7 +1986,7 @@ def test_next_until_return_at_return_event():
19861986
"""
19871987

19881988
def test_pdb_next_command_for_generator():
1989-
"""Testing skip unwindng stack on yield for generators for "next" command
1989+
"""Testing skip unwinding stack on yield for generators for "next" command
19901990
19911991
>>> def test_gen():
19921992
... yield 0
@@ -2050,7 +2050,7 @@ def test_pdb_next_command_for_generator():
20502050

20512051
if not SKIP_CORO_TESTS:
20522052
def test_pdb_next_command_for_coroutine():
2053-
"""Testing skip unwindng stack on yield for coroutines for "next" command
2053+
"""Testing skip unwinding stack on yield for coroutines for "next" command
20542054
20552055
>>> from test.support import run_yielding_async_fn, async_yield
20562056
@@ -2107,7 +2107,7 @@ def test_pdb_next_command_for_coroutine():
21072107
"""
21082108

21092109
def test_pdb_next_command_for_asyncgen():
2110-
"""Testing skip unwindng stack on yield for coroutines for "next" command
2110+
"""Testing skip unwinding stack on yield for coroutines for "next" command
21112111
21122112
>>> from test.support import run_yielding_async_fn, async_yield
21132113
@@ -2169,7 +2169,7 @@ def test_pdb_next_command_for_asyncgen():
21692169
"""
21702170

21712171
def test_pdb_return_command_for_generator():
2172-
"""Testing no unwindng stack on yield for generators
2172+
"""Testing no unwinding stack on yield for generators
21732173
for "return" command
21742174
21752175
>>> def test_gen():
@@ -2229,7 +2229,7 @@ def test_pdb_return_command_for_generator():
22292229

22302230
if not SKIP_CORO_TESTS:
22312231
def test_pdb_return_command_for_coroutine():
2232-
"""Testing no unwindng stack on yield for coroutines for "return" command
2232+
"""Testing no unwinding stack on yield for coroutines for "return" command
22332233
22342234
>>> from test.support import run_yielding_async_fn, async_yield
22352235
@@ -2272,7 +2272,7 @@ def test_pdb_return_command_for_coroutine():
22722272
"""
22732273

22742274
def test_pdb_until_command_for_generator():
2275-
"""Testing no unwindng stack on yield for generators
2275+
"""Testing no unwinding stack on yield for generators
22762276
for "until" command if target breakpoint is not reached
22772277
22782278
>>> def test_gen():
@@ -2321,7 +2321,7 @@ def test_pdb_until_command_for_generator():
23212321

23222322
if not SKIP_CORO_TESTS:
23232323
def test_pdb_until_command_for_coroutine():
2324-
"""Testing no unwindng stack for coroutines
2324+
"""Testing no unwinding stack for coroutines
23252325
for "until" command if target breakpoint is not reached
23262326
23272327
>>> from test.support import run_yielding_async_fn, async_yield

0 commit comments

Comments
 (0)