[Python-checkins] r66726 - in peps/trunk: pep-0003.txt pep-0334.txt pep-0336.txt pep-0348.txt pep-0354.txt pep-3100.txt pep-3101.txt pep-3107.txt pep-3108.txt pep-3110.txt pep-3118.txt pep-3127.txt

georg.brandl python-checkins at python.org
Thu Oct 2 14:40:50 CEST 2008


Author: georg.brandl
Date: Thu Oct  2 14:40:49 2008
New Revision: 66726

Log:
Update doc URLs in PEPs.


Modified:
   peps/trunk/pep-0003.txt
   peps/trunk/pep-0334.txt
   peps/trunk/pep-0336.txt
   peps/trunk/pep-0348.txt
   peps/trunk/pep-0354.txt
   peps/trunk/pep-3100.txt
   peps/trunk/pep-3101.txt
   peps/trunk/pep-3107.txt
   peps/trunk/pep-3108.txt
   peps/trunk/pep-3110.txt
   peps/trunk/pep-3118.txt
   peps/trunk/pep-3127.txt

Modified: peps/trunk/pep-0003.txt
==============================================================================
--- peps/trunk/pep-0003.txt	(original)
+++ peps/trunk/pep-0003.txt	Thu Oct  2 14:40:49 2008
@@ -18,9 +18,7 @@
     These are guidelines for the developers of Python, not the
     submitters of bugs.  Those are at 
 
-        http://docs.python.org/lib/reporting-bugs.html
-
-    (though this hardly seems the best place).
+        http://docs.python.org/bugs.html
 
 
 Guidelines

Modified: peps/trunk/pep-0334.txt
==============================================================================
--- peps/trunk/pep-0334.txt	(original)
+++ peps/trunk/pep-0334.txt	Thu Oct  2 14:40:49 2008
@@ -394,7 +394,7 @@
    (http://www.python.org/peps/pep-0255.html)
 
 .. [9] itertools - Functions creating iterators
-   (http://docs.python.org/lib/module-itertools.html)
+   (http://docs.python.org/library/itertools.html)
 
 .. [10] Microthreads in Python, David Mertz
    (http://www-106.ibm.com/developerworks/linux/library/l-pythrd.html)

Modified: peps/trunk/pep-0336.txt
==============================================================================
--- peps/trunk/pep-0336.txt	(original)
+++ peps/trunk/pep-0336.txt	Thu Oct  2 14:40:49 2008
@@ -113,7 +113,7 @@
 References
 
     [1] Python Reference Manual, Section 3.2,
-        http://docs.python.org/ref/ref.html
+        http://docs.python.org/reference/
 
 
 Copyright

Modified: peps/trunk/pep-0348.txt
==============================================================================
--- peps/trunk/pep-0348.txt	(original)
+++ peps/trunk/pep-0348.txt	Thu Oct  2 14:40:49 2008
@@ -464,7 +464,7 @@
    http://mail.python.org/pipermail/python-dev/2005-August/055116.html
 
 .. [#exceptions-stdlib] exceptions module
-   http://docs.python.org/lib/module-exceptions.html
+   http://docs.python.org/library/exceptions.html
 
 .. [#python-dev-thread1] python-dev thread (Pre-PEP: Exception
    Reorganization for Python 3.0)
@@ -508,7 +508,7 @@
    http://www.python.org/peps/pep-0020.html
 
 .. [#tutorial] Python Tutorial
-   http://docs.python.org/tut/tut.html
+   http://docs.python.org/tutorial/
 
 .. [#rejected] python-dev email (Bare except clauses in PEP 348)
    http://mail.python.org/pipermail/python-dev/2005-August/055676.html

Modified: peps/trunk/pep-0354.txt
==============================================================================
--- peps/trunk/pep-0354.txt	(original)
+++ peps/trunk/pep-0354.txt	Thu Oct  2 14:40:49 2008
@@ -228,7 +228,7 @@
     The ``NotImplemented`` return value from comparison operations
     signals the Python interpreter to attempt alternative comparisons
     or other fallbacks.
-    <http://docs.python.org/ref/types.html#l2h-29>
+    <http://docs.python.org/reference/datamodel.html#the-standard-type-hierarchy>
 
 ..  [#ENUM-RECIPE]
     "First Class Enums in Python", Zoran Isailovski,

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Thu Oct  2 14:40:49 2008
@@ -350,19 +350,19 @@
    http://mail.python.org/pipermail/python-dev/2008-February/076818.html
 
 .. [#sys-module] Python docs (sys -- System-specific parameters and functions)
-   http://docs.python.org/lib/module-sys.html
+   http://docs.python.org/library/sys.html
 
 .. [#operator-module] Python docs (operator -- Standard operators as functions)
-   http://docs.python.org/lib/module-operator.html
+   http://docs.python.org/library/operator.html
 
 .. [#array-module] Python docs (array -- Efficient arrays of numeric values)
-   http://docs.python.org/lib/module-array.html
+   http://docs.python.org/library/array.html
 
 .. [#file-object] Python docs (File objects)
-   http://docs.python.org/lib/bltin-file-objects.html
+   http://docs.python.org/library/stdtypes.html
 
 .. [#sequence-types] Python docs (Additional methods for emulation of sequence types)
-   http://docs.python.org/ref/sequence-methods.html
+   http://docs.python.org/reference/datamodel.html#additional-methods-for-emulation-of-sequence-types
 
 .. [#pep4] PEP 4 ("Deprecation of Standard Modules")
    http://www.python.org/dev/peps/pep-0004

Modified: peps/trunk/pep-3101.txt
==============================================================================
--- peps/trunk/pep-3101.txt	(original)
+++ peps/trunk/pep-3101.txt	Thu Oct  2 14:40:49 2008
@@ -794,10 +794,10 @@
 References
 
     [1] Python Library Reference - String formating operations
-    http://docs.python.org/lib/typesseq-strings.html
+    http://docs.python.org/library/stdtypes.html#string-formatting-operations
 
     [2] Python Library References - Template strings
-    http://docs.python.org/lib/node109.html
+    http://docs.python.org/library/string.html#string.Template
 
     [3] [Python-3000] String formating operations in python 3k
         http://mail.python.org/pipermail/python-3000/2006-April/000285.html

Modified: peps/trunk/pep-3107.txt
==============================================================================
--- peps/trunk/pep-3107.txt	(original)
+++ peps/trunk/pep-3107.txt	Thu Oct  2 14:40:49 2008
@@ -338,7 +338,7 @@
    http://rpyc.wikispaces.com/
    
 .. [#pydoc]
-   http://docs.python.org/lib/module-pydoc.html
+   http://docs.python.org/library/pydoc.html
    
 
 Copyright

Modified: peps/trunk/pep-3108.txt
==============================================================================
--- peps/trunk/pep-3108.txt	(original)
+++ peps/trunk/pep-3108.txt	Thu Oct  2 14:40:49 2008
@@ -1143,9 +1143,6 @@
 .. [#module-index] Python Documentation: Global Module Index
     (http://docs.python.org/modindex.html)
 
-.. [#timing-module] Python Library Reference: Obsolete
-    (http://docs.python.org/lib/obsolete-modules.html)
-
 .. [#silly-old-stuff] Python-Dev email: "Py3k release schedule worries"
     (http://mail.python.org/pipermail/python-3000/2006-December/005130.html)
 
@@ -1181,7 +1178,7 @@
     (http://appscript.sourceforge.net/)
 
 .. [#ast] _ast module
-    (http://docs.python.org/lib/ast.html)
+    (http://docs.python.org/library/ast.html)
 
 .. [#ast-removal] python-dev email: getting compiler package failures
     (http://mail.python.org/pipermail/python-3000/2007-May/007615.html)

Modified: peps/trunk/pep-3110.txt
==============================================================================
--- peps/trunk/pep-3110.txt	(original)
+++ peps/trunk/pep-3110.txt	Thu Oct  2 14:40:49 2008
@@ -239,7 +239,7 @@
    http://www.python.org/dev/peps/pep-0020/
    
 .. [#sys-module]
-   http://docs.python.org/lib/module-sys.html
+   http://docs.python.org/library/sys.html
    
 .. [#pep3100]
    http://www.python.org/dev/peps/pep-3100/

Modified: peps/trunk/pep-3118.txt
==============================================================================
--- peps/trunk/pep-3118.txt	(original)
+++ peps/trunk/pep-3118.txt	Thu Oct  2 14:40:49 2008
@@ -635,7 +635,7 @@
 The struct string-syntax is missing some characters to fully
 implement data-format descriptions already available elsewhere (in
 ctypes and NumPy for example).  The Python 2.5 specification is 
-at http://docs.python.org/lib/module-struct.html.
+at http://docs.python.org/library/struct.html.
 
 Here are the proposed additions:
 

Modified: peps/trunk/pep-3127.txt
==============================================================================
--- peps/trunk/pep-3127.txt	(original)
+++ peps/trunk/pep-3127.txt	Thu Oct  2 14:40:49 2008
@@ -492,7 +492,7 @@
    (http://www.gnu.org/software/libc/manual/html_node/Integer-Conversions.html)
 
 .. [2] Python string formatting operations
-   (http://docs.python.org/lib/typesseq-strings.html)
+   (http://docs.python.org/library/stdtypes.html#string-formatting-operations)
 
 .. [3] The Representation of Numbers, Jiajie Zhang and Donald A. Norman
     (http://acad88.sahs.uth.tmc.edu/research/publications/Number-Representation.pdf)


More information about the Python-checkins mailing list