Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
25f6fcc5
Commit
25f6fcc5
authored
Apr 04, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more complete examples
parent
93dda331
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
18 deletions
+46
-18
Doc/lib/libpdb.tex
Doc/lib/libpdb.tex
+23
-9
Doc/libpdb.tex
Doc/libpdb.tex
+23
-9
No files found.
Doc/lib/libpdb.tex
View file @
25f6fcc5
...
...
@@ -12,9 +12,9 @@ stack frame. It also supports post-mortem debugging and can be called
under program control.
The debugger is extensible --- it is actually defined as a class
\code
{
Pdb
}
. Th
e extension interface uses the (also undocumented)
modules
\code
{
bdb
}
and
\code
{
cmd
}
; it is currently undocumented but
easily understood by reading the source
.
\code
{
Pdb
}
. Th
is is currently undocumented but easily understood by
reading the source. The extension interface uses the (also
undocumented) modules
\code
{
bdb
}
and
\code
{
cmd
}
.
\ttindex
{
Pdb
}
\ttindex
{
bdb
}
\ttindex
{
cmd
}
...
...
@@ -25,13 +25,20 @@ specific modules).
\index
{
stdwin
}
\ttindex
{
wdb
}
The debugger's prompt is ``
\code
{
(Pdb)
}
''.
Typical usage to run a program under control of the debugger is:
\begin{verbatim}
>>> import pdb
>>> import mymodule
>>> pdb.run('mymodule.test()')
(Pdb)
> <string>(0)?()
(Pdb) continue
> <string>(1)?()
(Pdb) continue
NameError: 'spam'
> <string>(1)?()
(Pdb)
\end{verbatim}
Typical usage to inspect a crashed program is:
...
...
@@ -40,13 +47,19 @@ Typical usage to inspect a crashed program is:
>>> import pdb
>>> import mymodule
>>> mymodule.test()
(crashes with a stack trace)
Traceback (innermost last):
File "<stdin>", line 1, in ?
File "./mymodule.py", line 4, in test
test2()
File "./mymodule.py", line 3, in test2
print spam
NameError: spam
>>> pdb.pm()
(Pdb)
> ./mymodule.py(3)test2()
-> print spam
(Pdb)
\end{verbatim}
The debugger's prompt is ``
\code
{
(Pdb)
}
''.
The module defines the following functions; each enters the debugger
in a slightly different way:
...
...
@@ -111,7 +124,8 @@ Commands that the debugger doesn't recognize are assumed to be Python
statements and are executed in the context of the program being
debugged. Python statements can also be prefixed with an exclamation
point (``
\code
{
!
}
''). This is a powerful way to inspect the program
being debugged; it is even possible to change variables. When an
being debugged; it is even possible to change a variable or call a
function. When an
exception occurs in such a statement, the exception name is printed
but the debugger's state is not changed.
...
...
Doc/libpdb.tex
View file @
25f6fcc5
...
...
@@ -12,9 +12,9 @@ stack frame. It also supports post-mortem debugging and can be called
under program control.
The debugger is extensible --- it is actually defined as a class
\code
{
Pdb
}
. Th
e extension interface uses the (also undocumented)
modules
\code
{
bdb
}
and
\code
{
cmd
}
; it is currently undocumented but
easily understood by reading the source
.
\code
{
Pdb
}
. Th
is is currently undocumented but easily understood by
reading the source. The extension interface uses the (also
undocumented) modules
\code
{
bdb
}
and
\code
{
cmd
}
.
\ttindex
{
Pdb
}
\ttindex
{
bdb
}
\ttindex
{
cmd
}
...
...
@@ -25,13 +25,20 @@ specific modules).
\index
{
stdwin
}
\ttindex
{
wdb
}
The debugger's prompt is ``
\code
{
(Pdb)
}
''.
Typical usage to run a program under control of the debugger is:
\begin{verbatim}
>>> import pdb
>>> import mymodule
>>> pdb.run('mymodule.test()')
(Pdb)
> <string>(0)?()
(Pdb) continue
> <string>(1)?()
(Pdb) continue
NameError: 'spam'
> <string>(1)?()
(Pdb)
\end{verbatim}
Typical usage to inspect a crashed program is:
...
...
@@ -40,13 +47,19 @@ Typical usage to inspect a crashed program is:
>>> import pdb
>>> import mymodule
>>> mymodule.test()
(crashes with a stack trace)
Traceback (innermost last):
File "<stdin>", line 1, in ?
File "./mymodule.py", line 4, in test
test2()
File "./mymodule.py", line 3, in test2
print spam
NameError: spam
>>> pdb.pm()
(Pdb)
> ./mymodule.py(3)test2()
-> print spam
(Pdb)
\end{verbatim}
The debugger's prompt is ``
\code
{
(Pdb)
}
''.
The module defines the following functions; each enters the debugger
in a slightly different way:
...
...
@@ -111,7 +124,8 @@ Commands that the debugger doesn't recognize are assumed to be Python
statements and are executed in the context of the program being
debugged. Python statements can also be prefixed with an exclamation
point (``
\code
{
!
}
''). This is a powerful way to inspect the program
being debugged; it is even possible to change variables. When an
being debugged; it is even possible to change a variable or call a
function. When an
exception occurs in such a statement, the exception name is printed
but the debugger's state is not changed.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment