]> granicus.if.org Git - python/commitdiff
Change location of the package index to pypi.python.org/pypi.
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 25 Jul 2007 16:24:08 +0000 (16:24 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 25 Jul 2007 16:24:08 +0000 (16:24 +0000)
Lib/distutils/command/register.py
Lib/distutils/command/upload.py
Misc/NEWS

index 5fcc8d27647167102c29650ab0d062416bd2f490..200e61e24094aefa8f04a52f613fa14708a7621e 100644 (file)
@@ -17,7 +17,7 @@ class register(Command):
 
     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',
index 67ba080427ca301a47e62a00c1c47700d52af7c3..7461e5f4534ac278904ac72ed1b492548afbf8c3 100644 (file)
@@ -20,7 +20,7 @@ class upload(Command):
 
     description = "upload binary package to PyPI"
 
-    DEFAULT_REPOSITORY = 'http://www.python.org/pypi'
+    DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi'
 
     user_options = [
         ('repository=', 'r',
index e88fb2aebcd0bd16c36d792e00455f593068b576..8ca898b469d39f5d20f1a692e79cf74087c95875 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,8 @@ Core and builtins
 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.