details and clarifications, should have been checked in long ago

This commit is contained in:
David Goodger 2004-09-28 01:11:15 +00:00
parent 29414016e9
commit 2cd6800e7b
2 changed files with 13 additions and 5 deletions

View File

@ -17,6 +17,7 @@ Abstract
same code is used to speed up normal directory imports
provided os.listdir is available.
Note
Zip imports were added to Python 2.3, but the final implementation
@ -189,14 +190,19 @@ Custom Imports
Implementation
A C implementation is available as SourceForge patch 492105.
Superceded by patch 652586 and current CVS.
http://python.org/sf/492105
A newer version (updated for recent CVS by Paul Moore) is 645650.
Superceded by patch 652586 and current CVS.
http://python.org/sf/645650
A competing implementation by Just van Rossum is 652586.
A competing implementation by Just van Rossum is 652586, which is
the basis for the final implementation of PEP 302. PEP 273 has
been implemented using PEP 302's import hooks.
http://python.org/sf/652586
Copyright
This document has been placed in the public domain.

View File

@ -526,12 +526,14 @@ Open Issues
Implementation
The PEP 302 implementation has been integrated with Python as of
2.3a1. An earlier version is available as SourceForge patch
#652586, but more interestingly, the SF item contains a fairly
detailed history of the development and design.
The PEP 302 implementation is complete and has been integrated
with Python as of 2.3a1. An earlier version is available as
SourceForge patch #652586, but more interestingly, the SF item
contains a fairly detailed history of the development and design.
http://www.python.org/sf/652586
PEP 273 has been implemented using PEP 302's import hooks.
References and Footnotes