diff options
author | Mario Corchero <mariocj89@gmail.com> | 2018-01-28 04:58:47 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2018-01-28 04:58:47 (GMT) |
commit | fcf8b4c1022bc2d2f84dcef5d72eabf40a25ea19 (patch) | |
tree | 23047a8d12b7b1d007f3c6a5b60c05fd52b1e790 /Lib/pdb.py | |
parent | dd0e087edc8f1e4d2c0913236b1a62a77d9db6d8 (diff) | |
download | cpython-fcf8b4c1022bc2d2f84dcef5d72eabf40a25ea19.zip cpython-fcf8b4c1022bc2d2f84dcef5d72eabf40a25ea19.tar.gz cpython-fcf8b4c1022bc2d2f84dcef5d72eabf40a25ea19.tar.bz2 |
bpo-32206: Update pdb usage to include new module option (GH-5111)
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-x | Lib/pdb.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1638,9 +1638,11 @@ def help(): pydoc.pager(__doc__) _usage = """\ -usage: pdb.py [-c command] ... pyfile [arg] ... +usage: pdb.py [-c command] ... [-m module | pyfile] [arg] ... -Debug the Python program given by pyfile. +Debug the Python program given by pyfile. Alternatively, +an executable module or package to debug can be specified using +the -m switch. Initial commands are read from .pdbrc files in your home directory and in the current directory, if they exist. Commands supplied with |