summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJust van Rossum <just@letterror.com>2002-12-25 23:13:34 (GMT)
committerJust van Rossum <just@letterror.com>2002-12-25 23:13:34 (GMT)
commit89825958705d1aaf2aa7cdf96f79d2f292f3274c (patch)
tree5d17fe48989ec618fbf83de2366d824175bb6625 /Misc
parent00df3e052b25f3de574dd09b4912604ea45c2688 (diff)
downloadcpython-89825958705d1aaf2aa7cdf96f79d2f292f3274c.zip
cpython-89825958705d1aaf2aa7cdf96f79d2f292f3274c.tar.gz
cpython-89825958705d1aaf2aa7cdf96f79d2f292f3274c.tar.bz2
Backing out patch #642578 in anticipation of final acceptance of PEP 302.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 0 insertions, 6 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a9e3803..6547beb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,12 +12,6 @@ What's New in Python 2.3 alpha 1?
Type/class unification and new-style classes
--------------------------------------------
-- Exposed the PyImport_FrozenModules variable in import.c through
- imp.get_frozenmodules() and imp.set_frozenmodules(). This is
- useful for freezing tools written in Python that use Python for
- bootstrapping the frozen application. (XXX: this feature will be
- backed out if the zipfile import mechanism gets in before 2.3.a1.)
-
- One can now assign to __bases__ and __name__ of new-style classes.
- dict() now accepts keyword arguments so that dict(one=1, two=2)