News item for the change to turn _codecs into a builtin module.
diff --git a/Misc/NEWS b/Misc/NEWS
index d51ddbb..bce454b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,10 @@
 Core and builtins
 -----------------
 
+- The _codecs support module for codecs.py was turned into a builtin
+  module to assure that at least the builtin codecs are available
+  to the Python parser for source code decoding according to PEP 263.
+
 - issubclass now supports a tuple as the second argument, just like
   isinstance does. ``issubclass(X, (A, B))`` is equivalent to
   ``issubclass(X, A) or issubclass(X, B)``.