Commit faf71ea5 authored by Martin v. Löwis's avatar Martin v. Löwis

Fix spelling of cedillas.

parent 07d4fb6f
...@@ -890,7 +890,7 @@ Internationalized Domain Names (IDN)). It builds upon the ...@@ -890,7 +890,7 @@ Internationalized Domain Names (IDN)). It builds upon the
These RFCs together define a protocol to support non-ASCII characters These RFCs together define a protocol to support non-ASCII characters
in domain names. A domain name containing non-ASCII characters (such in domain names. A domain name containing non-ASCII characters (such
as ``www.Alliancefran\,caise.nu'') is converted into an as ``www.Alliancefran\c{c}aise.nu'') is converted into an
ASCII-compatible encoding (ACE, such as ASCII-compatible encoding (ACE, such as
``www.xn--alliancefranaise-npb.nu''). The ACE form of the domain name ``www.xn--alliancefranaise-npb.nu''). The ACE form of the domain name
is then used in all places where arbitrary characters are not allowed is then used in all places where arbitrary characters are not allowed
......
...@@ -1796,10 +1796,10 @@ Any breakage caused by this change should be reported as a bug. ...@@ -1796,10 +1796,10 @@ Any breakage caused by this change should be reported as a bug.
to convert between a Unicode domain name and the ASCII-compatible to convert between a Unicode domain name and the ASCII-compatible
encoding (ACE). encoding (ACE).
\begin{verbatim} \begin{alltt}
>>> u"www.Alliancefran\,caise.nu".encode("idna") >>> u"www.Alliancefran\c{c}aise.nu".encode("idna")
'www.xn--alliancefranaise-npb.nu' 'www.xn--alliancefranaise-npb.nu'
\end{verbatim} \end{alltt}
In addition, the \module{socket} has been extended to transparently In addition, the \module{socket} has been extended to transparently
convert Unicode hostnames to the ACE before passing them to the C convert Unicode hostnames to the ACE before passing them to the C
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment