diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 07:36:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 07:36:35 (GMT) |
commit | e73778c1ac0e58d3520b37308b970073e818fa00 (patch) | |
tree | b176299e5205ce49c5ce71096966101556584eb2 /Doc/faq/library.rst | |
parent | 46761ec7c2938ed48535276e11bd7fc834a9a0ca (diff) | |
download | cpython-e73778c1ac0e58d3520b37308b970073e818fa00.zip cpython-e73778c1ac0e58d3520b37308b970073e818fa00.tar.gz cpython-e73778c1ac0e58d3520b37308b970073e818fa00.tar.bz2 |
Use https:// URLs when referring to python.org hosts.
Diffstat (limited to 'Doc/faq/library.rst')
-rw-r--r-- | Doc/faq/library.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 5f4ff17..95c063b 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 -<http://pypi.python.org/pypi>`_ or try `Google <http://www.google.com>`_ or +<https://pypi.python.org/pypi>`_ 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. @@ -607,7 +607,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 - <http://pypi.python.org/pypi/pexpect/>`_. + <https://pypi.python.org/pypi/pexpect/>`_. How do I access the serial (RS232) port? @@ -663,7 +663,7 @@ and client-side web systems. .. XXX check if wiki page is still up to date A summary of available frameworks is maintained by Paul Boddie at -http://wiki.python.org/moin/WebProgramming\ . +https://wiki.python.org/moin/WebProgramming\ . Cameron Laird maintains a useful set of pages about Python web technologies at http://phaseit.net/claird/comp.lang.python/web_python. @@ -706,7 +706,7 @@ What module should I use to help with generating HTML? .. XXX add modern template languages You can find a collection of useful links on the `Web Programming wiki page -<http://wiki.python.org/moin/WebProgramming>`_. +<https://wiki.python.org/moin/WebProgramming>`_. How do I send mail from a Python script? @@ -792,7 +792,7 @@ database. Support for most relational databases is available. See the `DatabaseProgramming wiki page -<http://wiki.python.org/moin/DatabaseProgramming>`_ for details. +<https://wiki.python.org/moin/DatabaseProgramming>`_ for details. How do you implement persistent objects in Python? |