[Python-checkins] python/nondist/peps pep-0314.txt,1.17,1.18

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Thu Feb 3 13:31:03 CET 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16960

Modified Files:
	pep-0314.txt 
Log Message:
Restrict package names to importable ones

Index: pep-0314.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0314.txt,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- pep-0314.txt	3 Feb 2005 02:30:53 -0000	1.17
+++ pep-0314.txt	3 Feb 2005 12:30:44 -0000	1.18
@@ -207,10 +207,9 @@
       Each entry contains a string describing some other module or
       package required by this package. 
 
-      The format of a requirement string is simple: a module or
-      package name, optionally followed by a version declaration within
-      parentheses.  Leading and trailing whitespace are ignored, and
-      whitespace within the string is normalized to a single space.
+      The format of a requirement string is identical to that of a
+      module or package name usable with the 'import' statement,
+      optionally followed by a version declaration within parentheses.
 
       A version declaration is a series of conditional operators and
       version numbers, separated by commas.  Conditional operators



More information about the Python-checkins mailing list