summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-03 10:19:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-03 10:19:46 (GMT)
commit24559e483400073c6ae1446c0ac2a7990c755f02 (patch)
tree892132385115a66fc159c577eb3f37b254901d9b /Misc
parent9a578d9ee6ef64ed8ac2db7db5bc2b9233a2dca5 (diff)
downloadcpython-24559e483400073c6ae1446c0ac2a7990c755f02.zip
cpython-24559e483400073c6ae1446c0ac2a7990c755f02.tar.gz
cpython-24559e483400073c6ae1446c0ac2a7990c755f02.tar.bz2
Issue #22619: Added negative limit support in the traceback module.
Based on patch by Dmitry Kazakov.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ca0fcab..e34d711 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -712,6 +712,7 @@ Anton Kasyanov
Lou Kates
Makoto Kato
Hiroaki Kawai
+Dmitry Kazakov
Brian Kearns
Sebastien Keim
Ryan Kelly
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a3c30b..f2a8594 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #22619: Added negative limit support in the traceback module.
+ Based on patch by Dmitry Kazakov.
+
- Issue #24094: Fix possible crash in json.encode with poorly behaved dict
subclasses.