summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2002-12-12 18:01:43 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2002-12-12 18:01:43 (GMT)
commit20b91358e5fd8042fbcaa4293fa37b7063fa77cf (patch)
tree45e8eeb00ecdcbd152529a56d39a8c70c7d7fb04 /Misc
parentb28de0d79f6f1bfc7e395a1945167a87bfe95356 (diff)
downloadcpython-20b91358e5fd8042fbcaa4293fa37b7063fa77cf.zip
cpython-20b91358e5fd8042fbcaa4293fa37b7063fa77cf.tar.gz
cpython-20b91358e5fd8042fbcaa4293fa37b7063fa77cf.tar.bz2
News item for the change to turn _codecs into a builtin module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d51ddbb..bce454b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,10 @@ Type/class unification and new-style classes
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)``.