Skip to content

Commit 20b3f39

Browse files
authored
Merge pull request #338 from jdufresne/pypi
Update pypi.python.org URLs to pypi.org
2 parents ac1b731 + db4033c commit 20b3f39

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/_templates/sidebarintro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h3>Other Formats</h3>
1515
-->
1616
<!--<h3>Useful Links</h3>
1717
<ul>
18-
<li><a href="http://pypi.python.org/pypi/future">on PyPI</a></li>
18+
<li><a href="https://pypi.org/project/future/">on PyPI</a></li>
1919
<li><a href="https://github.com/PythonCharmers/python-future">on GitHub</a></li>
2020
</ul>
2121
-->

docs/other/useful_links.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ http://lucumr.pocoo.org/2011/12/7/thoughts-on-python3/
2323
http://python3porting.com/fixers.html
2424
http://washort.twistedmatrix.com/2010/11/unicode-in-python-and-how-to-prevent-it.html
2525
http://docs.python.org/release/3.0.1/whatsnew/3.0.html
26-
https://pypi.python.org/pypi/unicode-nazi
26+
https://pypi.org/project/unicode-nazi/
2727
http://www.rmi.net/~lutz/strings30.html
2828

2929
"Porting your code to Python 3": Alexandre Vassalotti: peadrop.com/slides/mp5.pdf
@@ -43,7 +43,7 @@ python-modernize: https://github.com/mitsuhiko/python-modernize
4343

4444
2to3 docs describing the different fixers: http://docs.python.org/2/library/2to3.html
4545

46-
Injecting code into running Python processes (hopefully not needed): https://pypi.python.org/pypi/pyrasite/2.0
46+
Injecting code into running Python processes (hopefully not needed): https://pypi.org/project/pyrasite/2.0/
4747

4848
Withdrawn PEP to help with the Py3k standard library transition: http://www.peps.io/364/
4949

@@ -52,7 +52,7 @@ Import hooks
5252
http://www.peps.io/302/
5353
"Hacking Python imports ... for fun and profit": blog post from 2012-05: http://xion.org.pl/2012/05/06/hacking-python-imports/
5454

55-
Full importlib backport to Py2: https://pypi.python.org/pypi/backport_importlib/0...1
55+
Full importlib backport to Py2: https://pypi.org/project/backport_importlib/0...1/
5656

5757
Python 2.7 importlib subset: http://docs.python.org/2/whatsnew/2.7.html#importlib-section
5858

@@ -78,7 +78,7 @@ PEPs: 358, 3112, 3137, 3138
7878
http://python3porting.com/noconv.html#unicode-section
7979
Unicode literals u'...' back in Python 3.3: http://www.python.org/dev/peps/pep-0414/
8080
https://github.com/django/django/blob/master/django/utils/encoding.py
81-
https://pypi.python.org/pypi/unicode-nazi
81+
https://pypi.org/project/unicode-nazi/
8282
http://docs.python.org/3/library/stdtypes.html#bytes-methods
8383
http://wolfprojects.altervista.org/talks/unicode-and-python-3/
8484
Buffer protocol (which bytes and bytes-like objects obey): http://docs.python.org/3.3/c-api/buffer.html#bufferobjects
@@ -104,7 +104,7 @@ Also: typecheck module on PyPI
104104
To categorize
105105
-------------
106106

107-
https://pypi.python.org/pypi/awkwardduet/1.1a4
107+
https://pypi.org/project/awkwardduet/1.1a4/
108108
https://github.com/campadrenalin/persei/blob/master/persei.py
109109
http://slideshare.net/dabeaz/mastering-python-3-io
110110
http://rmi.net/~lutz/strings30.html

docs/pasteurize.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classes that inherit from ``object`` on both Python versions, and both
3030
refer to stdlib modules (as well as builtins) under their Py3 names.
3131

3232
Note also that the ``configparser`` module is a special case; there is a full
33-
backport available on PyPI (https://pypi.python.org/pypi/configparser), so, as
33+
backport available on PyPI (https://pypi.org/project/configparser/), so, as
3434
of v0.16.0, ``python-future`` no longer provides a ``configparser`` package
3535
alias. To use the resulting code on Py2, install the ``configparser`` backport
3636
with ``pip install configparser`` or by adding it to your ``requirements.txt``

docs/standard_library_imports.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ complete list is here::
7878
import _thread
7979

8080
Note that, as of v0.16.0, ``python-future`` no longer includes an alias for the
81-
``configparser`` module because a full backport exists (see https://pypi.python.org/pypi/configparser).
81+
``configparser`` module because a full backport exists (see https://pypi.org/project/configparser/).
8282

8383
.. _list-standard-library-refactored:
8484

docs/whatsnew.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ What's new in version 0.16.0 (2016-09-22)
1010

1111
This release removes the ``configparser`` package as an alias for
1212
``ConfigParser`` on Py2 to improve compatibility with the backported
13-
`configparser package <https://pypi.python.org/pypi/configparser>`. Previously
13+
`configparser package <https://pypi.org/project/configparser/>`. Previously
1414
``python-future`` and the PyPI ``configparser`` backport clashed, causing
1515
various compatibility issues. (Issues #118, #181)
1616

0 commit comments

Comments
 (0)