Issue 9916: Add some missing errno symbols.
diff --git a/Misc/NEWS b/Misc/NEWS
index 290d6a2..b4f830b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,8 +14,8 @@
   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.
+- 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.
@@ -62,6 +62,8 @@
 Library
 -------
 
+- Issue #9916: Add some missing errno symbols.
+
 - Issue #9877: Expose sysconfig.get_makefile_filename()
 
 - logging: Added hasHandlers() method to Logger and LoggerAdapter.