summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-10-19 15:04:38 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2014-10-19 15:04:38 (GMT)
commitf23530f5690d2e37bba7235a6398b2c386a5b485 (patch)
tree0e2ed390b1bc3007fa60dcc784f4ae3f3d21b1ff /Lib/pdb.py
parent0fc08fd2c7774a5521ae198b04639ec634fdb5c2 (diff)
downloadcpython-f23530f5690d2e37bba7235a6398b2c386a5b485.zip
cpython-f23530f5690d2e37bba7235a6398b2c386a5b485.tar.gz
cpython-f23530f5690d2e37bba7235a6398b2c386a5b485.tar.bz2
Issue #22186: Fix typos in Lib/.
Patch by FĂ©vry Thibault.
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-xLib/pdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index 42e605e..e28564b 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -301,7 +301,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
# An 'Internal StopIteration' exception is an exception debug event
# issued by the interpreter when handling a subgenerator run with
# 'yield from' or a generator controled by a for loop. No exception has
- # actually occured in this case. The debugger uses this debug event to
+ # actually occurred in this case. The debugger uses this debug event to
# stop when the debuggee is returning from such generators.
prefix = 'Internal ' if (not exc_traceback
and exc_type is StopIteration) else ''