Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
254b8f90
Commit
254b8f90
authored
Jul 25, 2007
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change location of the package index to pypi.python.org/pypi
parent
55248d6c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
Lib/distutils/command/register.py
Lib/distutils/command/register.py
+1
-1
Lib/distutils/command/upload.py
Lib/distutils/command/upload.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/command/register.py
View file @
254b8f90
...
...
@@ -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'
,
...
...
Lib/distutils/command/upload.py
View file @
254b8f90
...
...
@@ -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'
,
...
...
Misc/NEWS
View file @
254b8f90
...
...
@@ -238,6 +238,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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment