Skip to content

Commit eedc485

Browse files
suriyaabrettcannon
authored andcommitted
Use HTTPS protocol instead of HTTP (python#383)
1 parent 6c1d33c commit eedc485

13 files changed

+21
-21
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ Affirmer's express Statement of Purpose.
113113
CC0 or use of the Work.
114114

115115
For more information, please see
116-
<http://creativecommons.org/publicdomain/zero/1.0/>
116+
<https://creativecommons.org/publicdomain/zero/1.0/>

buildworker.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Setting up the buildbot worker
5858
Conventional always-on machines
5959
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6060

61-
You need a recent version of the `buildbot <http://buildbot.net/>`_ software,
61+
You need a recent version of the `buildbot <https://buildbot.net/>`_ software,
6262
and you will probably want a separate 'buildbot' user to run the buildbot
6363
software. You may also want to set the buildbot up using a virtual
6464
environment, depending on how you manage your system. We won't cover how to that

clang.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ flags are passed through ``CFLAGS`` and ``CXXFLAGS``, and sometimes through
3838
``CC`` and ``CXX`` (in addition to the compiler).
3939

4040
A complete list of sanitizers can be found at `Controlling Code Generation
41-
<http://clang.llvm.org/docs/UsersManual.html#controlling-code-generation>`_.
41+
<https://clang.llvm.org/docs/UsersManual.html#controlling-code-generation>`_.
4242

4343
.. note::
4444

@@ -66,9 +66,9 @@ Download, Build and Install
6666
Perform the following to download, build and install the Clang/LLVM 3.4. ::
6767

6868
# Download
69-
wget http://llvm.org/releases/3.4/llvm-3.4.src.tar.gz
70-
wget http://llvm.org/releases/3.4/clang-3.4.src.tar.gz
71-
wget http://llvm.org/releases/3.4/compiler-rt-3.4.src.tar.gz
69+
wget https://llvm.org/releases/3.4/llvm-3.4.src.tar.gz
70+
wget https://llvm.org/releases/3.4/clang-3.4.src.tar.gz
71+
wget https://llvm.org/releases/3.4/compiler-rt-3.4.src.tar.gz
7272

7373
# LLVM
7474
tar xvf llvm-3.4.src.tar.gz
@@ -351,4 +351,4 @@ Or, you could ignore the entire file with::
351351
Unfortunately, you won't know what to blacklist until you run the sanitizer.
352352

353353
The documentation is available at `Sanitizer special case list
354-
<http://clang.llvm.org/docs/SanitizerSpecialCaseList.html>`_.
354+
<https://clang.llvm.org/docs/SanitizerSpecialCaseList.html>`_.

communication.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ mailing list is the place to discuss and work on improvements to the CPython
5757
core development workflow.
5858

5959
A complete list of Python mailing lists can be found at https://mail.python.org.
60-
Most lists are also mirrored at `GMANE <http://gmane.org>`_ and can be read and
60+
Most lists are also mirrored at `GMANE <https://gmane.org>`_ and can be read and
6161
posted to in various ways, including via web browsers, NNTP newsreaders, and
6262
RSS feed readers.
6363

@@ -87,7 +87,7 @@ Some core developers enjoy spending time on IRC discussing various issues
8787
regarding Python's development in the ``#python-dev`` channel on
8888
``irc.freenode.net``. This is not a place to ask for help with Python, but to
8989
discuss issues related to Python's own development. You can use Freenode's
90-
`Web interface <http://webchat.freenode.net/>`_ if you don't have an IRC
90+
`Web interface <https://webchat.freenode.net/>`_ if you don't have an IRC
9191
client.
9292

9393

compiler.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ References
575575
213--227, 1997.
576576
577577
.. _The Zephyr Abstract Syntax Description Language.:
578-
http://www.cs.princeton.edu/research/techreps/TR-554-97
578+
https://www.cs.princeton.edu/research/techreps/TR-554-97
579579

580580
.. [#skip-peephole] Skip Montanaro's Peephole Optimizer Paper
581581
(https://drive.google.com/open?id=0B2InO7qBBGRXQXlDM3FVdWZxQWc)

coverage.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ following from your CPython clone::
210210
This will give you the most complete coverage possible for CPython's standard
211211
library.
212212

213-
.. _coverage.py: http://coverage.readthedocs.io/en/latest/
213+
.. _coverage.py: https://coverage.readthedocs.io/en/latest/
214214

215215

216216
.. _coverage_by_regrtest:
@@ -276,5 +276,5 @@ about 20 to 30 minutes on a modern computer.
276276
Multiple test jobs may not work properly. C coverage reporting has only
277277
been tested with a single test process.
278278

279-
.. _gcov: http://gcc.gnu.org/onlinedocs/gcc/Gcov.html
279+
.. _gcov: https://gcc.gnu.org/onlinedocs/gcc/Gcov.html
280280
.. _lcov: http://ltp.sourceforge.net/coverage/lcov.php

exploring.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ building your understanding of both the 2.x and 3.x versions of CPython:
8282

8383
.. _Python's Innards Series: https://tech.blog.aknin.name/category/my-projects/pythons-innards/
8484

85-
.. _Eli Bendersky's Python Internals: http://eli.thegreenplace.net/tag/python-internals
85+
.. _Eli Bendersky's Python Internals: https://eli.thegreenplace.net/tag/python-internals
8686

8787
.. _A guide from parser to objects, observed using Eclipse: https://docs.google.com/document/d/1nzNN1jeNCC_bg1LADCvtTuGKvcyMskV1w8Ad2iLlwoI/
8888

gdb.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ gdb 7 and later
2020
---------------
2121

2222
In gdb 7, support for `extending gdb with Python
23-
<http://sourceware.org/gdb/current/onlinedocs/gdb/Python.html#Python>`_ was
23+
<https://sourceware.org/gdb/current/onlinedocs/gdb/Python.html#Python>`_ was
2424
added. When CPython is built you will notice a ``python-gdb.py`` file in the
2525
root directory of your checkout. Read the module docstring for details on how
2626
to use the file to enhance gdb for easier debugging of a CPython process.

help.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ questions about developing for Python. Just remember that ``#python-dev``
2323
is for questions involving the development *of* Python whereas ``#python``
2424
is for questions concerning development *with* Python.
2525

26-
.. _freenode: http://freenode.net/
26+
.. _freenode: https://freenode.net/
2727

2828

2929
Core Mentorship

langchanges.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ For some examples on language changes that were accepted please read
9393
.. _issue tracker: https://bugs.python.org
9494
.. _PEP Index: https://www.python.org/dev/peps/
9595
.. _draft PEP: https://www.python.org/dev/peps/pep-0001/
96-
.. _Status Quo Wins a Stalemate: http://www.curiousefficiency.org/posts/2011/02/status-quo-wins-stalemate.html
97-
.. _Justifying Python Language Changes: http://www.curiousefficiency.org/posts/2011/02/justifying-python-language-changes.html
96+
.. _Status Quo Wins a Stalemate: https://www.curiousefficiency.org/posts/2011/02/status-quo-wins-stalemate.html
97+
.. _Justifying Python Language Changes: https://www.curiousefficiency.org/posts/2011/02/justifying-python-language-changes.html

motivations.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ participating in the CPython core development process:
101101

102102
.. topic:: Nick Coghlan (Australia)
103103

104-
* Personal site: `Curious Efficiency <http://www.curiousefficiency.org/>`_
105-
* `Extended bio <http://www.curiousefficiency.org/pages/about>`__
104+
* Personal site: `Curious Efficiency <https://www.curiousefficiency.org/>`_
105+
* `Extended bio <https://www.curiousefficiency.org/pages/about>`__
106106
* `Tritium <https://www.tritium.com.au/>`__ (Software Developer)
107107
* Python Software Foundation (Fellow, Packaging Working Group)
108108

stdlibchanges.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Through your public sharing of your code in order to gauge community support
4747
for it you at least can know that others will come across it who may find it
4848
useful.
4949

50-
.. _Python Cookbook: http://code.activestate.com/recipes/langs/python/
50+
.. _Python Cookbook: https://code.activestate.com/recipes/langs/python/
5151

5252

5353
Adding a new module

tracker.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Reporting an issue
4141
If the problem you're reporting is not already in the `issue tracker`_, you
4242
need to log in by entering your user and password in the form on the left.
4343
If you don't already have a tracker account, select the "Register" link or,
44-
if you use `OpenID <http://openid.net>`_, one of the OpenID provider logos in
44+
if you use `OpenID <https://openid.net>`_, one of the OpenID provider logos in
4545
the sidebar.
4646

4747
It is not possible to submit a bug report anonymously.

0 commit comments

Comments
 (0)