summaryrefslogtreecommitdiffstats
path: root/Doc/faq/library.rst
diff options
context:
space:
mode:
authorStéphane Wirtel <stephane@wirtel.be>2018-05-15 18:58:35 (GMT)
committerNed Deily <nad@python.org>2018-05-15 18:58:35 (GMT)
commit19177fbd5d6d9b29ccc302d65f9d9417ece082ce (patch)
tree202e95daf156bad46c0ee152701fd2d904ffbe11 /Doc/faq/library.rst
parentb056562860c227bad2e0ba7cd3130e115c007768 (diff)
downloadcpython-19177fbd5d6d9b29ccc302d65f9d9417ece082ce.zip
cpython-19177fbd5d6d9b29ccc302d65f9d9417ece082ce.tar.gz
cpython-19177fbd5d6d9b29ccc302d65f9d9417ece082ce.tar.bz2
bpo-33503: Fix the broken pypi link in the source and the documentation (GH-6814)
Diffstat (limited to 'Doc/faq/library.rst')
-rw-r--r--Doc/faq/library.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index aec4bf9..ab92a87 100644
--- a/Doc/faq/library.rst
+++ b/Doc/faq/library.rst
@@ -19,7 +19,7 @@ standard library module. (Eventually you'll learn what's in the standard
library and will be able to skip this step.)
For third-party packages, search the `Python Package Index
-<https://pypi.python.org/pypi>`_ or try `Google <https://www.google.com>`_ or
+<https://pypi.org>`_ or try `Google <https://www.google.com>`_ or
another Web search engine. Searching for "Python" plus a keyword or two for
your topic of interest will usually find something helpful.
@@ -611,7 +611,7 @@ use ``p.read(n)``.
"expect" library. A Python extension that interfaces to expect is called
"expy" and available from http://expectpy.sourceforge.net. A pure Python
solution that works like expect is `pexpect
- <https://pypi.python.org/pypi/pexpect/>`_.
+ <https://pypi.org/project/pexpect/>`_.
How do I access the serial (RS232) port?