summaryrefslogtreecommitdiffstats
path: root/Doc/howto/unicode.rst
diff options
context:
space:
mode:
authorSanyam Khurana <8039608+CuriousLearner@users.noreply.github.com>2017-12-06 16:39:33 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-12-06 16:39:33 (GMT)
commit1b4587a2462fc05a14be87123083322103a1f55b (patch)
treec89b0a1f6455ad4fbb7daed04576ff450cd5941f /Doc/howto/unicode.rst
parent6bf992a1ac6f3f4d0f83ead9c6403a76afdbe6eb (diff)
downloadcpython-1b4587a2462fc05a14be87123083322103a1f55b.zip
cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.gz
cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.bz2
bpo-25910: Fixes redirection from http to https (#4674)
Diffstat (limited to 'Doc/howto/unicode.rst')
-rw-r--r--Doc/howto/unicode.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
index 9649b9c..a83e5a2 100644
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -217,7 +217,7 @@ To help understand the standard, Jukka Korpela has written `an introductory
guide <https://www.cs.tut.fi/~jkorpela/unicode/guide.html>`_ to reading the
Unicode character tables.
-Another `good introductory article <http://www.joelonsoftware.com/articles/Unicode.html>`_
+Another `good introductory article <https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-character-sets-no-excuses/>`_
was written by Joel Spolsky.
If this introduction didn't make things clear to you, you should try
reading this alternate article before continuing.
@@ -487,7 +487,7 @@ References
Some good alternative discussions of Python's Unicode support are:
* `Processing Text Files in Python 3 <http://python-notes.curiousefficiency.org/en/latest/python3/text_file_processing.html>`_, by Nick Coghlan.
-* `Pragmatic Unicode <http://nedbatchelder.com/text/unipain.html>`_, a PyCon 2012 presentation by Ned Batchelder.
+* `Pragmatic Unicode <https://nedbatchelder.com/text/unipain.html>`_, a PyCon 2012 presentation by Ned Batchelder.
The :class:`str` type is described in the Python library reference at
:ref:`textseq`.