diff options
author | Just van Rossum <just@letterror.com> | 2002-12-01 21:43:13 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2002-12-01 21:43:13 (GMT) |
commit | 6a8c51837a294ea8a193f5d7fec41dbfdd06d84b (patch) | |
tree | 09b633efaac85a550e6d38a68d82137f65ea6be6 /Misc | |
parent | 53262577eb2b4883950e1fa1c677701dd5a7b9b1 (diff) | |
download | cpython-6a8c51837a294ea8a193f5d7fec41dbfdd06d84b.zip cpython-6a8c51837a294ea8a193f5d7fec41dbfdd06d84b.tar.gz cpython-6a8c51837a294ea8a193f5d7fec41dbfdd06d84b.tar.bz2 |
The new imp.[gs]et_frozenmodules() will be utterly redundant if the
zipfile import stuff get in. I'll probably back it out again.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -15,7 +15,8 @@ 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. + 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. |