From 30b9d5d3af043fc2687ad11a188a34fe355e20ef Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 17 Aug 2013 15:50:46 +0300 Subject: =?UTF-8?q?#18705:=20fix=20a=20number=20of=20typos.=20=20Patch=20b?= =?UTF-8?q?y=20F=C3=A9vry=20Thibault.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lib/pdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/pdb.py') diff --git a/Lib/pdb.py b/Lib/pdb.py index e6d7f8ff70..b4a19e4131 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py @@ -1004,7 +1004,7 @@ class Pdb(bdb.Bdb, cmd.Cmd): def do_run(self, arg): """run [args...] Restart the debugged python program. If a string is supplied - it is splitted with "shlex", and the result is used as the new + 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". """ @@ -1361,7 +1361,7 @@ class Pdb(bdb.Bdb, cmd.Cmd): def do_interact(self, arg): """interact - Start an interative interpreter whose global namespace + Start an interactive interpreter whose global namespace contains all the (global and local) names found in the current scope. """ ns = self.curframe.f_globals.copy() -- cgit v1.2.1