summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-08-13 07:50:57 (GMT)
committerGeorg Brandl <georg@python.org>2009-08-13 07:50:57 (GMT)
commitd07ac6402422abbc54215478e042bbb009148cf9 (patch)
treec3958071e5de463401eb97c34609b39a76b8e075 /Misc
parent019f3617f8e5c667c4db3182ead37f2c1fbb0268 (diff)
downloadcpython-d07ac6402422abbc54215478e042bbb009148cf9.zip
cpython-d07ac6402422abbc54215478e042bbb009148cf9.tar.gz
cpython-d07ac6402422abbc54215478e042bbb009148cf9.tar.bz2
#6126: fix pdb stepping and breakpoints by giving the executed code the correct filename; this used execfile() in 2.x which did this automatically.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 040bef7..e115695 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -169,6 +169,8 @@ Core and Builtins
Library
-------
+- Issue #6126: Fixed pdb command-line usage.
+
- Issue #6314: logging: performs extra checks on the "level" argument.
- Issue #6274: Fixed possible file descriptors leak in subprocess.py