[Python-checkins] python/dist/src/Misc NEWS,1.556,1.557

lemburg@users.sourceforge.net lemburg@users.sourceforge.net
Thu, 12 Dec 2002 10:01:48 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv837/Misc

Modified Files:
	NEWS 
Log Message:
News item for the change to turn _codecs into a builtin module.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.556
retrieving revision 1.557
diff -C2 -d -r1.556 -r1.557
*** NEWS	12 Dec 2002 16:41:39 -0000	1.556
--- NEWS	12 Dec 2002 18:01:43 -0000	1.557
***************
*** 85,88 ****
--- 85,92 ----
  -----------------
  
+ - 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