diff options
author | Guido van Rossum <guido@python.org> | 2007-07-16 23:10:57 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-16 23:10:57 +0000 |
commit | d77d6992a5e31660a9eb8dc02f6c28d464c75ed8 (patch) | |
tree | 14ac0b661847ce759e4799fd4d1c95af2a459d15 /Lib/encodings/punycode.py | |
parent | 6a2ccd0273c9694afd81bc141e2005820a30a29c (diff) | |
download | cpython-git-d77d6992a5e31660a9eb8dc02f6c28d464c75ed8.tar.gz |
Change a bunch of file encodings from Latin-1 to UTF-8.
Remove the encoding from Tix.py (it doesn't seem to need one).
Note: we still have to keep the "coding: utf-8" declaration
for files that aren't pure ASCII, as the default per PEP 3120
hasn't been implemented yet.
Diffstat (limited to 'Lib/encodings/punycode.py')
-rw-r--r-- | Lib/encodings/punycode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/encodings/punycode.py b/Lib/encodings/punycode.py index 4c22fe5166..f650f6c22c 100644 --- a/Lib/encodings/punycode.py +++ b/Lib/encodings/punycode.py @@ -1,7 +1,7 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- """ Codec for the Punicode encoding, as specified in RFC 3492 -Written by Martin v. Löwis. +Written by Martin v. Löwis. """ import codecs |