diff options
author | Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com> | 2017-12-06 16:39:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-12-06 16:39:33 (GMT) |
commit | 1b4587a2462fc05a14be87123083322103a1f55b (patch) | |
tree | c89b0a1f6455ad4fbb7daed04576ff450cd5941f /Doc/whatsnew/2.7.rst | |
parent | 6bf992a1ac6f3f4d0f83ead9c6403a76afdbe6eb (diff) | |
download | cpython-1b4587a2462fc05a14be87123083322103a1f55b.zip cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.gz cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.bz2 |
bpo-25910: Fixes redirection from http to https (#4674)
Diffstat (limited to 'Doc/whatsnew/2.7.rst')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 55392fc..eec8984 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -1809,7 +1809,7 @@ wish to read the Tcl/Tk manual page describing the Ttk theme engine, available at https://www.tcl.tk/man/tcl8.5/TkCmd/ttk_intro.htm. Some screenshots of the Python/Ttk code in use are at -http://code.google.com/p/python-ttk/wiki/Screenshots. +https://code.google.com/archive/p/python-ttk/wikis/Screenshots.wiki. The :mod:`ttk` module was written by Guilherme Polo and added in :issue:`2983`. An alternate version called ``Tile.py``, written by @@ -1832,8 +1832,8 @@ https://pypi.python.org/pypi/unittest2. When used from the command line, the module can automatically discover tests. It's not as fancy as `py.test <http://pytest.org>`__ or -`nose <http://code.google.com/p/python-nose/>`__, but provides a simple way -to run tests kept within a set of package directories. For example, +`nose <https://nose.readthedocs.io/>`__, but provides a +simple way to run tests kept within a set of package directories. For example, the following command will search the :file:`test/` subdirectory for any importable test files named ``test*.py``:: |