From d57937656d58b378bc68cdf43caed09da7a93b06 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Thu, 10 Oct 2013 17:33:43 -0400 Subject: #18764: p(rint) -> p in pdb docs. Missed changing the doc for the command itself, patch for that also by Connor Osborn. --- Doc/library/pdb.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 66a78d0..48a8a6b 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -403,10 +403,16 @@ by the local file. Print the argument list of the current function. -.. pdbcommand:: p(rint) expression +.. pdbcommand:: p expression Evaluate the *expression* in the current context and print its value. + .. note:: + + ``print()`` can also be used, but is not a debugger command --- this executes the + Python :func:`print` function. + + .. pdbcommand:: pp expression Like the :pdbcmd:`p` command, except the value of the expression is -- cgit v0.12