diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-09-30 20:02:06 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-09-30 20:02:06 (GMT) |
commit | a76e4d837693cc12cf63c66e4517678970b961e1 (patch) | |
tree | 3848c4d8b0edf3b7d8d704726e387a54f681c0e9 | |
parent | 1c873bf77d855e821d7c1b4d9a2489b2a1b85f5f (diff) | |
download | cpython-a76e4d837693cc12cf63c66e4517678970b961e1.zip cpython-a76e4d837693cc12cf63c66e4517678970b961e1.tar.gz cpython-a76e4d837693cc12cf63c66e4517678970b961e1.tar.bz2 |
add link to pdb source (closes #22528)
-rw-r--r-- | Doc/library/pdb.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index a475099..da307df 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -6,6 +6,9 @@ .. module:: pdb :synopsis: The Python debugger for interactive interpreters. +**Source code:** :source:`Lib/pdb.py` + +-------------- .. index:: single: debugging |