summaryrefslogtreecommitdiff
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-29 08:36:35 +0100
committerGeorg Brandl <georg@python.org>2014-10-29 08:36:35 +0100
commit34066ed05d627caad703e631279e0ed615c9fb75 (patch)
treeb268e82e2d0ee02e42a6279b508d219e79fd3cec /Doc/whatsnew/3.3.rst
parentb09d6eaf65f063fb9247f9e4ea91f0f6b072b449 (diff)
downloadcpython-34066ed05d627caad703e631279e0ed615c9fb75.tar.gz
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 32b8581d55..360b072da3 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`)