summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-29 07:36:35 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-29 07:36:35 (GMT)
commite73778c1ac0e58d3520b37308b970073e818fa00 (patch)
treeb176299e5205ce49c5ce71096966101556584eb2 /Doc/whatsnew/3.3.rst
parent46761ec7c2938ed48535276e11bd7fc834a9a0ca (diff)
downloadcpython-e73778c1ac0e58d3520b37308b970073e818fa00.zip
cpython-e73778c1ac0e58d3520b37308b970073e818fa00.tar.gz
cpython-e73778c1ac0e58d3520b37308b970073e818fa00.tar.bz2
Use https:// URLs when referring to python.org hosts.
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r--Doc/whatsnew/3.3.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 32b8581..360b072 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -44,7 +44,7 @@
This article explains the new features in Python 3.3, compared to 3.2.
Python 3.3 was released on September 29, 2012. For full details,
-see the `changelog <http://docs.python.org/3.3/whatsnew/changelog.html>`_.
+see the `changelog <https://docs.python.org/3.3/whatsnew/changelog.html>`_.
.. seealso::
@@ -2103,7 +2103,7 @@ The :class:`~urllib.request.Request` class, now accepts a *method* argument
used by :meth:`~urllib.request.Request.get_method` to determine what HTTP method
should be used. For example, this will send a ``'HEAD'`` request::
- >>> urlopen(Request('http://www.python.org', method='HEAD'))
+ >>> urlopen(Request('https://www.python.org', method='HEAD'))
(:issue:`1673007`)