[Python-checkins] python/nondist/peps pep-0304.txt,1.1,1.2

goodger@users.sourceforge.net goodger@users.sourceforge.net
Thu, 23 Jan 2003 10:45:16 -0800


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1:/tmp/cvs-serv4118

Modified Files:
	pep-0304.txt 
Log Message:
markup fixes

Index: pep-0304.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0304.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** pep-0304.txt	23 Jan 2003 17:26:42 -0000	1.1
--- pep-0304.txt	23 Jan 2003 18:45:09 -0000	1.2
***************
*** 63,66 ****
--- 63,67 ----
    to distinguish it from "bytecode base".
  
+ 
  Locating bytecode files
  -----------------------
***************
*** 75,78 ****
--- 76,80 ----
  directory in sys.path prefixed appropriately by the bytecode base.
  
+ 
  Writing bytecode files
  ----------------------
***************
*** 88,92 ****
  Conceptually, the augmented directory for a bytecode file is the
  directory in which the source file exists prefixed by the bytecode
! base.  In a Unix environment this would be:
  
      pcb = os.path.abspath(sys.pythonbytecodebase)
--- 90,94 ----
  Conceptually, the augmented directory for a bytecode file is the
  directory in which the source file exists prefixed by the bytecode
! base.  In a Unix environment this would be::
  
      pcb = os.path.abspath(sys.pythonbytecodebase)
***************
*** 97,101 ****
  drive letter of the directory containing the source file is treated as
  a directory component after removing the trailing colon.  The
! augmented directory is thus derived as
  
      pcb = os.path.abspath(sys.pythonbytecodebase)
--- 99,103 ----
  drive letter of the directory containing the source file is treated as
  a directory component after removing the trailing colon.  The
! augmented directory is thus derived as ::
  
      pcb = os.path.abspath(sys.pythonbytecodebase)
***************
*** 110,114 ****
  During program startup, the value of the PYTHONBYTECODEBASE
  environment variable is made absolute, checked for validity and added
! to the sys module, effectively:
  
      pcb = os.path.abspath(os.environ["PYTHONBYTECODEBASE"])
--- 112,116 ----
  During program startup, the value of the PYTHONBYTECODEBASE
  environment variable is made absolute, checked for validity and added
! to the sys module, effectively::
  
      pcb = os.path.abspath(os.environ["PYTHONBYTECODEBASE"])
***************
*** 233,237 ****
  
  In the Windows examples which follow, the urllib source code resides
! in ``C:\PYTHON22\urllib.py``.  ``C:\\PYTHON22`` is in sys.path but is
  not writable by the current user.
  
--- 235,239 ----
  
  In the Windows examples which follow, the urllib source code resides
! in ``C:\PYTHON22\urllib.py``.  ``C:\PYTHON22`` is in sys.path but is
  not writable by the current user.
  
***************
*** 257,260 ****
--- 259,263 ----
    the augmented directory, creating intermediate directories as
    needed.
+ 
  
  References