diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-01-14 08:25:03 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-01-14 08:25:03 (GMT) |
commit | 489f392a0ed9996492d7c1c124b859160a3f13d3 (patch) | |
tree | 8a2dd3d926a1a741d99f5b0f59412ca69c5be7e5 | |
parent | 07395914ca1e421544230c9fa618ce2314cfe266 (diff) | |
download | cpython-489f392a0ed9996492d7c1c124b859160a3f13d3.zip cpython-489f392a0ed9996492d7c1c124b859160a3f13d3.tar.gz cpython-489f392a0ed9996492d7c1c124b859160a3f13d3.tar.bz2 |
Issue #10902: Fix reference to run* methods
-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 8335993..1e9de63 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -131,7 +131,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: |