summaryrefslogtreecommitdiff
path: root/Doc/library/pdb.rst
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-10 09:28:03 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-09-10 09:28:03 +0300
commitba24af440863ddd47dbd92605ab2ec028086378c (patch)
tree84d57498b5a10509cbb1d137b1c8e79bf32d2f86 /Doc/library/pdb.rst
parentfd9560d15fcbf4f05c99ee56531a73987284f37d (diff)
downloadcpython-ba24af440863ddd47dbd92605ab2ec028086378c.tar.gz
Fix Python version in pdb.rst
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r--Doc/library/pdb.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index 4b912f767f..52bef6820d 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)