[Python-checkins] CVS: python/nondist/peps pep-0262.txt,1.2,1.3

A.M. Kuchling akuchling@users.sourceforge.net
Mon, 25 Mar 2002 05:57:47 -0800


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv20491

Modified Files:
	pep-0262.txt 
Log Message:
Remove file type indicator
Rearrange order of file fields
Note that .pyc/.pyo files are listed, too


Index: pep-0262.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0262.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** pep-0262.txt	25 Mar 2002 13:36:05 -0000	1.2
--- pep-0262.txt	25 Mar 2002 13:57:45 -0000	1.3
***************
*** 74,84 ****
      FILES section 
     
!         An entry for each file installed by the package.  
!         XXX Are .pyc and .pyo files in this list?  What about compiled
!         .so files?  AMK thinks "no" and "yes", respectively.
  
      Each file's entry is a single tab-delimited line that contains
      the following fields: 
  
          * The file's size
  
--- 74,87 ----
      FILES section 
     
!         An entry for each file installed by the package. Generated files
!         such as .pyc and .pyo files are on this list as well as the original
!         .py files installed by a package; their checksums won't be stored or
!         checked, though.
  
      Each file's entry is a single tab-delimited line that contains
      the following fields: 
  
+         * The file's full path, as installed on the system.  
+ 
          * The file's size
  
***************
*** 87,100 ****
   
          * An MD5 digest of the file, encoded in hex.  
- 
-         * The file's full path, as installed on the system.  (XXX
-           should it be relative to sys.prefix, or sys.prefix +
-           '/lib/python<version>?'  If so, full paths are still needed;
-           consider a package that installs a startup script such as
-           /etc/init.d/zope)
-           
-         * XXX some sort of type indicator, to indicate whether this is
-           a Python module, binary module, documentation file, config
-           file?  Do we need this?  
  
      A package that uses the Distutils for installation should
--- 90,93 ----