summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2007-09-24 23:45:51 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2007-09-24 23:45:51 (GMT)
commit9c90635bcbc63c36bcdc9f2835be930a9ecfb073 (patch)
treebd20afc14ecd842538157ec5c1de895e5b7bac58 /Doc/library
parent9b915673b78b62cef82626ab4e580c35ae7ff3e1 (diff)
downloadcpython-9c90635bcbc63c36bcdc9f2835be930a9ecfb073.zip
cpython-9c90635bcbc63c36bcdc9f2835be930a9ecfb073.tar.gz
cpython-9c90635bcbc63c36bcdc9f2835be930a9ecfb073.tar.bz2
Remove stray odd character; grammar fix
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/pdb.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index ab277be..2b28ae0 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -243,7 +243,7 @@ commands [*bpnumber*]
Specifying any command resuming execution (currently continue, step, next,
return, jump, quit and their abbreviations) terminates the command list (as if
that command was immediately followed by end). This is because any time you
- resume execution (even with a simple next or step), you may encounter· another
+ resume execution (even with a simple next or step), you may encounter another
breakpoint--which could have its own command list, leading to ambiguities about
which list to execute.
@@ -334,7 +334,7 @@ unalias *name*
(Pdb)
run [*args* ...]
- Restart the debugged python program. If an argument is supplied, it is splitted
+ Restart the debugged python program. If an argument is supplied, it is split
with "shlex" and the result is used as the new sys.argv. History, breakpoints,
actions and debugger options are preserved. "restart" is an alias for "run".