diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-01-14 08:55:38 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-01-14 08:55:38 (GMT) |
commit | 39be2a5210aa0be61c782aa2222ae8d018ea170f (patch) | |
tree | 44d07372ff195ee51b799098663b372a504c39e2 /Doc/library | |
parent | 44a6c167292d590dfc8373b4562335201bb76b84 (diff) | |
download | cpython-39be2a5210aa0be61c782aa2222ae8d018ea170f.zip cpython-39be2a5210aa0be61c782aa2222ae8d018ea170f.tar.gz cpython-39be2a5210aa0be61c782aa2222ae8d018ea170f.tar.bz2 |
Merged revisions 87993 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87993 | eli.bendersky | 2011-01-14 10:25:03 +0200 (Fri, 14 Jan 2011) | 2 lines
Issue #10902: Fix reference to run* methods
........
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/pdb.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 5b145ec..ee63ebb 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -125,7 +125,7 @@ slightly different way: :data:`sys.last_traceback`. -The ``run_*`` functions and :func:`set_trace` are aliases for instantiating the +The ``run*`` functions and :func:`set_trace` are aliases for instantiating the :class:`Pdb` class and calling the method of the same name. If you want to access further features, you have to do this yourself: |