summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-04 19:08:28 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-04 19:08:28 (GMT)
commit539ee5da6fb2a56869e6c6f4401300b4d5906d76 (patch)
tree98b32fae910ccb41a333319b65fcd19343cedb87 /Misc
parent86067c2e17b221ac10c4b4c97030c2cfc44eccaf (diff)
downloadcpython-539ee5da6fb2a56869e6c6f4401300b4d5906d76.zip
cpython-539ee5da6fb2a56869e6c6f4401300b4d5906d76.tar.gz
cpython-539ee5da6fb2a56869e6c6f4401300b4d5906d76.tar.bz2
Issue #13120: Allow to call pdb.set_trace() from thread.
Patch by Ilya Sandler.
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 fbcfe90..3894d2e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -175,6 +175,9 @@ Core and Builtins
Library
-------
+- Issue #13120: Allow to call pdb.set_trace() from thread.
+ Patch by Ilya Sandler.
+
- Issue #10182: The re module doesn't truncate indices to 32 bits anymore.
Patch by Serhiy Storchaka.