summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-04-14 22:41:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-04-14 22:41:29 (GMT)
commita8723a02ea109beabe2dfe1bbe18958afc5b7af9 (patch)
treebea4acb5ca96a4fd4387461f365f477eb77d5ced /Misc
parent97100c0e3d0e2bd907b41e5583b1f9cb6d9c1a36 (diff)
downloadcpython-a8723a02ea109beabe2dfe1bbe18958afc5b7af9.zip
cpython-a8723a02ea109beabe2dfe1bbe18958afc5b7af9.tar.gz
cpython-a8723a02ea109beabe2dfe1bbe18958afc5b7af9.tar.bz2
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS7
2 files changed, 7 insertions, 1 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 75a34d4..c26ecf4 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -72,6 +72,7 @@ Dwayne Bailey
Stig Bakken
Greg Ball
Luigi Ballabio
+Thomas Ballinger
Jeff Balogh
Manuel Balsera
Matt Bandy
diff --git a/Misc/NEWS b/Misc/NEWS
index ff7e543..e3083c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1,4 +1,4 @@
-+++++++++++
++++++++++++
Python News
+++++++++++
@@ -9,6 +9,7 @@ Release date: XXX
Core and Builtins
-----------------
+
- Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES.
Patch courtesy of Joe Jevnik.
@@ -31,6 +32,10 @@ Core and Builtins
Library
-------
+- 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 #23811: Add missing newline to the PyCompileError error message.
Patch by Alex Shkop.