summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-11-05 22:41:33 +0000
committerBarry Warsaw <barry@python.org>2002-11-05 22:41:33 +0000
commit5d8d618c95a586743e8ac0c334c7d084c1cbc84c (patch)
tree6f382bb5f73ef9e3bb62d442ea340d845ff7403c
parent75f36b70401f721dff1b191abfac67355507c35b (diff)
downloadcpython-git-5d8d618c95a586743e8ac0c334c7d084c1cbc84c.tar.gz
Add an entry for pdb's new `pp' command.
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 96263e7b9f..c57ca1de8c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -545,6 +545,9 @@ Library
library. It implements a complete file interface, one-shot (de)compression
functions, and types for sequential (de)compression.
+- New pdb command `pp' which is like `p' except that it pretty-prints
+ the value of its expression argument.
+
Tools/Demos
-----------