summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-02-02 15:51:20 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-02-02 15:51:20 (GMT)
commit7a66fc22ad62563d0907c2fc91229656acfa0dd6 (patch)
treeac81c12a24852eedfaa1a1c6bd4276c170431e21 /Misc
parentc468b537cd227ce5484500a8f8ea7e932eabc7d5 (diff)
downloadcpython-7a66fc22ad62563d0907c2fc91229656acfa0dd6.zip
cpython-7a66fc22ad62563d0907c2fc91229656acfa0dd6.tar.gz
cpython-7a66fc22ad62563d0907c2fc91229656acfa0dd6.tar.bz2
revert lineno and col_offset changes from #16795 (closes #21295)
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 d0ee519..86e902b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #21295: Revert some changes (issue #16795) to AST line numbers and
+ column offsets that constituted a regression.
+
- Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
returned NotImplemented. Original patch by Martin Panter.