Kaydet (Commit) 0001422a authored tarafından Georg Brandl's avatar Georg Brandl

New documentation page for the bdb module.

(This doesn't need to be merged to Py3k.)
üst 4c20bc40
This diff is collapsed.
***********************
Debugging and Profiling
***********************
These libraries help you with Python development: the debugger enables you to
step through code, analyze stack frames and set breakpoints etc., and the
profilers run code and give you a detailed breakdown of execution times,
allowing you to identify bottlenecks in your programs.
.. toctree::
bdb.rst
pdb.rst
profile.rst
hotshot.rst
timeit.rst
trace.rst
\ No newline at end of file
...@@ -64,11 +64,7 @@ over 2500 additional components available from the `Python Package Index ...@@ -64,11 +64,7 @@ over 2500 additional components available from the `Python Package Index
frameworks.rst frameworks.rst
tk.rst tk.rst
development.rst development.rst
pdb.rst debug.rst
profile.rst
hotshot.rst
timeit.rst
trace.rst
python.rst python.rst
custominterp.rst custominterp.rst
restricted.rst restricted.rst
......
.. _debugger: .. _debugger:
******************* :mod:`pdb` --- The Python Debugger
The Python Debugger ==================================
*******************
.. module:: pdb .. module:: pdb
:synopsis: The Python debugger for interactive interpreters. :synopsis: The Python debugger for interactive interpreters.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment