summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-10-10 21:23:26 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-10-10 21:23:26 (GMT)
commit78d692f98e395f3fc4ec2f53343a67bb1d0e94c5 (patch)
treeaee46766ae650cf4be85704bf5082bbef53abb25 /Misc
parent2fe9bac4dca34e86d44b7e169f3795fde4c841a1 (diff)
downloadcpython-78d692f98e395f3fc4ec2f53343a67bb1d0e94c5.zip
cpython-78d692f98e395f3fc4ec2f53343a67bb1d0e94c5.tar.gz
cpython-78d692f98e395f3fc4ec2f53343a67bb1d0e94c5.tar.bz2
18764: remove the problematic 'print' alias for the PDB 'p' command.
So that it no longer shadows the print function. Patch by Connor Osborn, doc and test changes by R. David Murray.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3044d85..ab9cea7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #18764: remove the 'print' alias for the PDB 'p' command so that it no
+ longer shadows the print function.
+
- Issue #19158: a rare race in BoundedSemaphore could allow .release() too
often.