summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-11 12:43:18 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-11 12:43:18 (GMT)
commit8114f21668fe9775d2542d079c6396a745f4f094 (patch)
tree62ef9087e76229ea0fd18d0a1052abd79c9ae2f3 /Misc
parent0a7b8596c075b3d69e2fae3c71746415ba3bad39 (diff)
parent8b58339eb2939da4df822f7ea457b44e120fad45 (diff)
downloadcpython-8114f21668fe9775d2542d079c6396a745f4f094.zip
cpython-8114f21668fe9775d2542d079c6396a745f4f094.tar.gz
cpython-8114f21668fe9775d2542d079c6396a745f4f094.tar.bz2
Issue #28512: Fixed setting the offset attribute of SyntaxError by
PyErr_SyntaxLocationEx() and PyErr_SyntaxLocationObject().
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 5c323a1..8db9170 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.1 release candidate 1
Core and Builtins
-----------------
+- Issue #28512: Fixed setting the offset attribute of SyntaxError by
+ PyErr_SyntaxLocationEx() and PyErr_SyntaxLocationObject().
+
- Issue #28918: Fix the cross compilation of xxlimited when Python has been
built with Py_DEBUG defined.