add column offset to all syntax errors
diff --git a/Misc/NEWS b/Misc/NEWS
index 8cb3ea3..9ac3e0d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,9 +10,8 @@
Core and Builtins
-----------------
-- Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other
- threads are still running. Instead, reinitialize the GIL on a second
- call to Py_Initialize().
+- All SyntaxErrors now have a column offset and therefore a caret when the error
+ is printed.
- Issue #9252: PyImport_Import no longer uses a fromlist hack to return the
module that was imported, but instead gets the module from sys.modules.
@@ -59,10 +58,6 @@
Library
-------
-- Issue #9877: Expose sysconfig.get_makefile_filename()
-
-- logging: Added hasHandlers() method to Logger and LoggerAdapter.
-
- Issue #1686: Fix string.Template when overriding the pattern attribute.
- Issue #9854: SocketIO objects now observe the RawIOBase interface in