[Python-checkins] r45244 - peps/trunk/pep-0243.txt

andrew.kuchling python-checkins at python.org
Mon Apr 10 23:56:25 CEST 2006


Author: andrew.kuchling
Date: Mon Apr 10 23:56:25 2006
New Revision: 45244

Modified:
   peps/trunk/pep-0243.txt
Log:
Update hostname and URL

Modified: peps/trunk/pep-0243.txt
==============================================================================
--- peps/trunk/pep-0243.txt	(original)
+++ peps/trunk/pep-0243.txt	Mon Apr 10 23:56:25 2006
@@ -37,8 +37,8 @@
     regular HTML file upload request.  This form is posted using
     ENCTYPE="multipart/form-data" encoding [2].
 
-    The upload will be made to the host "modules.python.org" on port
-    80/tcp (POST http://modules.python.org:80/swalowpost.cgi).  The form
+    The upload will be made to the host "www.python.org" on port
+    80/tcp (POST http://www.python.org:80/pypi).  The form
     will consist of the following fields:
 
         distribution -- The file containing the module software (for
@@ -101,7 +101,7 @@
 
     Example:
 
-        >>> f = urllib.urlopen('http://modules.python.org:80/swalowpost.cgi')
+        >>> f = urllib.urlopen('http://www.python.org:80/pypi')
         >>> s = f.headers['x-swalow-status']
         >>> s = s + ': ' + f.headers.get('x-swalow-reason', '<None>')
         >>> print s
@@ -115,7 +115,7 @@
     with the following form:
 
         <H1>Upload file</H1>
-        <FORM NAME="fileupload" METHOD="POST" ACTION="swalowpost.cgi"
+        <FORM NAME="fileupload" METHOD="POST" ACTION="pypi"
               ENCTYPE="multipart/form-data">
         <INPUT TYPE="file" NAME="distribution"><BR>
         <INPUT TYPE="text" NAME="distmd5sum"><BR>


More information about the Python-checkins mailing list