diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-10 06:28:03 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-10 06:28:03 (GMT) |
commit | 2d7250b3be5ce47e9246f8c6d4ce05dd7172e67c (patch) | |
tree | e0fa70af721ab120b5ebf21ef32e99f6119d4539 /Doc/library/pdb.rst | |
parent | bc6262675c70e62ab2d578505e52a409a2c0849f (diff) | |
download | cpython-2d7250b3be5ce47e9246f8c6d4ce05dd7172e67c.zip cpython-2d7250b3be5ce47e9246f8c6d4ce05dd7172e67c.tar.gz cpython-2d7250b3be5ce47e9246f8c6d4ce05dd7172e67c.tar.bz2 |
Fix Python version in pdb.rst
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r-- | Doc/library/pdb.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 4b912f7..52bef68 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -160,7 +160,7 @@ access further features, you have to do this yourself: This allows you to break into the debugger again by pressing :kbd:`Ctrl-C`. If you want Pdb not to touch the SIGINT handler, set *nosigint* to true. - The *readrc* argument defaults to True and controls whether Pdb will load + The *readrc* argument defaults to true and controls whether Pdb will load .pdbrc files from the filesystem. Example call to enable tracing with *skip*:: @@ -174,7 +174,7 @@ access further features, you have to do this yourself: The *nosigint* argument. Previously, a SIGINT handler was never set by Pdb. - .. versionadded:: 3.5 + .. versionchanged:: 3.6 The *readrc* argument. .. method:: run(statement, globals=None, locals=None) |