summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-11 12:39:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-11 12:39:01 (GMT)
commit8b58339eb2939da4df822f7ea457b44e120fad45 (patch)
treed34029d80314da5bea6e6fccbc9f07e74fa50457 /Misc/NEWS
parent49c14d8e8fe8f1897eef72ef45665b7afeec32d6 (diff)
downloadcpython-8b58339eb2939da4df822f7ea457b44e120fad45.zip
cpython-8b58339eb2939da4df822f7ea457b44e120fad45.tar.gz
cpython-8b58339eb2939da4df822f7ea457b44e120fad45.tar.bz2
Issue #28512: Fixed setting the offset attribute of SyntaxError by
PyErr_SyntaxLocationEx() and PyErr_SyntaxLocationObject().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 80bb03e..3d664ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #28512: Fixed setting the offset attribute of SyntaxError by
+ PyErr_SyntaxLocationEx() and PyErr_SyntaxLocationObject().
+
- Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
Original patch by Andreas Stührk.