[pypy-svn] r16999 - pypy/release/0.7.x/pypy/doc

hpk at codespeak.net hpk at codespeak.net
Sun Aug 28 13:43:16 CEST 2005


Author: hpk
Date: Sun Aug 28 13:43:15 2005
New Revision: 16999

Modified:
   pypy/release/0.7.x/pypy/doc/coding-guide.txt
Log:
renaming of mentions of 2.3.4 -> 2.4.1 


Modified: pypy/release/0.7.x/pypy/doc/coding-guide.txt
==============================================================================
--- pypy/release/0.7.x/pypy/doc/coding-guide.txt	(original)
+++ pypy/release/0.7.x/pypy/doc/coding-guide.txt	Sun Aug 28 13:43:15 2005
@@ -531,7 +531,7 @@
 
 Modules visible from application programs are imported from
 interpreter or application level files.  PyPy reuses almost all python
-modules of CPython's standard library, currently from version 2.3.4.  We
+modules of CPython's standard library, currently from version 2.4.1.  We
 sometimes need to `modify modules`_ and - more often - regression tests
 because they rely on implementation details of CPython.
 
@@ -561,13 +561,13 @@
 
     >>>> import types
     t>>>> types.__file__
-    '/home/hpk/pypy-dist/lib-python/modified-2.3.4/types.py'
+    '/home/hpk/pypy-dist/lib-python/modified-2.4.1/types.py'
 
     >>>> import os
     faking <type 'posix.stat_result'>
     faking <type 'posix.statvfs_result'>
     >>>> os.__file__
-    '/home/hpk/pypy-dist/lib-python/2.3.4/os.py'
+    '/home/hpk/pypy-dist/lib-python/2.4.1/os.py'
     >>>>
 
 Module directories / Import order
@@ -590,11 +590,11 @@
 
     contains pure Python reimplementation of modules.
 
-*lib-python/modified-2.3.4/*
+*lib-python/modified-2.4.1/*
 
     The files and tests that we have modified from the CPython library.
 
-*lib-python/2.3.4/*
+*lib-python/2.4.1/*
 
     The unmodified CPython library. **Never ever checkin anything here**.
 
@@ -609,14 +609,14 @@
 by default and CPython has a number of places where it relies
 on some classes being old-style.
 
-If you want to change a module or test contained in ``lib-python/2.3.4``
-then make sure that you copy the file to our ``lib-python/modified-2.3.4``
+If you want to change a module or test contained in ``lib-python/2.4.1``
+then make sure that you copy the file to our ``lib-python/modified-2.4.1``
 directory first.  In subversion commandline terms this reads::
 
-    svn cp lib-python/2.3.4/somemodule.py lib-python/modified-2.3.4/
+    svn cp lib-python/2.4.1/somemodule.py lib-python/modified-2.4.1/
 
 and subsequently you edit and commit
-``lib-python/modified-2.3.4/somemodule.py``.  This copying operation is
+``lib-python/modified-2.4.1/somemodule.py``.  This copying operation is
 important because it keeps the original CPython tree clean and makes it
 obvious what we had to change.
 



More information about the Pypy-commit mailing list