summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-04-15 04:00:41 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-04-15 04:00:41 (GMT)
commit28edf12cd4d3900b1583f779be907c00b1b8366b (patch)
tree6d49c65c25f63acfe322d12c1c45b793a768107b
parentef9ffcbcd442579e06b2c83f827f521d333ac1cc (diff)
downloadcpython-28edf12cd4d3900b1583f779be907c00b1b8366b.zip
cpython-28edf12cd4d3900b1583f779be907c00b1b8366b.tar.gz
cpython-28edf12cd4d3900b1583f779be907c00b1b8366b.tar.bz2
add Allison Kaptur (#21217)
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS6
2 files changed, 4 insertions, 3 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c26ecf4..e04d986 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -704,6 +704,7 @@ Peter van Kampen
Jan Kanis
Rafe Kaplan
Jacob Kaplan-Moss
+Allison Kaptur
Janne Karila
Per Øyvind Karlsen
Anton Kasyanov
diff --git a/Misc/NEWS b/Misc/NEWS
index c39fbb0..2472c27 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,9 +35,9 @@ Library
- Issue #23342: Add a subprocess.run() function than returns a CalledProcess
instance for a more consistent API than the existing call* functions.
-- Issue #21217: inspect.getsourcelines() now tries to compute the start and
- end lines from the code object, fixing an issue when a lambda function is
- used as decorator argument. Patch by Thomas Ballinger.
+- Issue #21217: inspect.getsourcelines() now tries to compute the start and end
+ lines from the code object, fixing an issue when a lambda function is used as
+ decorator argument. Patch by Thomas Ballinger and Allison Kaptur.
- Issue #23811: Add missing newline to the PyCompileError error message.
Patch by Alex Shkop.