[Python-checkins] r56543 - in python/trunk: Lib/distutils/command/register.py Lib/distutils/command/upload.py Misc/NEWS

martin.v.loewis python-checkins at python.org
Wed Jul 25 18:24:24 CEST 2007


Author: martin.v.loewis
Date: Wed Jul 25 18:24:23 2007
New Revision: 56543

Modified:
   python/trunk/Lib/distutils/command/register.py
   python/trunk/Lib/distutils/command/upload.py
   python/trunk/Misc/NEWS
Log:
Change location of the package index to pypi.python.org/pypi


Modified: python/trunk/Lib/distutils/command/register.py
==============================================================================
--- python/trunk/Lib/distutils/command/register.py	(original)
+++ python/trunk/Lib/distutils/command/register.py	Wed Jul 25 18:24:23 2007
@@ -17,7 +17,7 @@
 
     description = ("register the distribution with the Python package index")
 
-    DEFAULT_REPOSITORY = 'http://www.python.org/pypi'
+    DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi'
 
     user_options = [
         ('repository=', 'r',

Modified: python/trunk/Lib/distutils/command/upload.py
==============================================================================
--- python/trunk/Lib/distutils/command/upload.py	(original)
+++ python/trunk/Lib/distutils/command/upload.py	Wed Jul 25 18:24:23 2007
@@ -20,7 +20,7 @@
 
     description = "upload binary package to PyPI"
 
-    DEFAULT_REPOSITORY = 'http://www.python.org/pypi'
+    DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi'
 
     user_options = [
         ('repository=', 'r',

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed Jul 25 18:24:23 2007
@@ -238,6 +238,8 @@
 Library
 -------
 
+- Change location of the package index to pypi.python.org/pypi
+
 - Bug #1701409: Fix a segfault in printing ctypes.c_char_p and
   ctypes.c_wchar_p when they point to an invalid location.  As a
   sideeffect the representation of these instances has changed.


More information about the Python-checkins mailing list