diff options
author | Guido van Rossum <guido@python.org> | 1993-10-22 13:57:38 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-10-22 13:57:38 +0000 |
commit | b37954f91771735e8595918f6e43f46438db7397 (patch) | |
tree | b1bbbcfcb7c831ecd541fc5e45354d962cb502d0 | |
parent | e61fa0a1e4c6598f286f54772c7e065c49dc17ba (diff) | |
download | cpython-git-b37954f91771735e8595918f6e43f46438db7397.tar.gz |
Added missing "import os" to pdb.help()
-rwxr-xr-x | Lib/pdb.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py index f415e409f1..fd8835b14b 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py @@ -315,6 +315,7 @@ def test(): # print help def help(): + import os for dirname in sys.path: fullname = os.path.join(dirname, 'pdb.doc') if os.path.exists(fullname): |