[Python-checkins] r56542 - in python/branches/release25-maint: 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:08 CEST 2007


Author: martin.v.loewis
Date: Wed Jul 25 18:24:08 2007
New Revision: 56542

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


Modified: python/branches/release25-maint/Lib/distutils/command/register.py
==============================================================================
--- python/branches/release25-maint/Lib/distutils/command/register.py	(original)
+++ python/branches/release25-maint/Lib/distutils/command/register.py	Wed Jul 25 18:24:08 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/branches/release25-maint/Lib/distutils/command/upload.py
==============================================================================
--- python/branches/release25-maint/Lib/distutils/command/upload.py	(original)
+++ python/branches/release25-maint/Lib/distutils/command/upload.py	Wed Jul 25 18:24:08 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/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Wed Jul 25 18:24:08 2007
@@ -26,6 +26,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