-# -*- coding: iso-8859-1 -*-
-# Copyright (C) 2005, 2006 Martin v. Löwis
+# -*- coding: utf-8 -*-
+# Copyright (C) 2005, 2006 Martin v. Löwis
# Licensed to PSF under a Contributor Agreement.
# The bdist_wininst command proper
# based on bdist_wininst
-# -*- 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
-# -*- coding: iso-8859-1 -*-
+# -*- coding: utf-8 -*-
"""Parser for command line options.
This module helps scripts to parse the command line arguments in
# Gerrit Holl <gerrit@nl.linux.org> moved the string-based exceptions
# to class-based exceptions.
#
-# Peter Åstrand <astrand@lysator.liu.se> added gnu_getopt().
+# Peter Ã\85strand <astrand@lysator.liu.se> added gnu_getopt().
#
# TODO for gnu_getopt():
#
-# -*- coding: iso-8859-1 -*-
-# Copyright (C) 2005 Martin v. Löwis
+# -*- coding: utf-8 -*-
+# Copyright (C) 2005 Martin v. Löwis
# Licensed to PSF under a Contributor Agreement.
from _msi import *
import os, string, re
-# -*- coding: iso-8859-1 -*-
+# -*- coding: utf-8 -*-
# Copyright (C) 2001,2002 Python Software Foundation
# csv package unit tests
## class TestUnicode(unittest.TestCase):
## def test_unicode_read(self):
## import codecs
-## f = codecs.EncodedFile(StringIO("Martin von Löwis,"
-## "Marc André Lemburg,"
+## f = codecs.EncodedFile(StringIO("Martin von Löwis,"
+## "Marc André Lemburg,"
## "Guido van Rossum,"
-## "François Pinard\r\n"),
+## "François Pinard\r\n"),
## data_encoding='iso-8859-1')
## reader = csv.reader(f)
-## self.assertEqual(list(reader), [[u"Martin von Löwis",
-## u"Marc André Lemburg",
-## u"Guido van Rossum",
-## u"François Pinardn"]])
+## self.assertEqual(list(reader), [["Martin von Löwis",
+## "Marc André Lemburg",
+## "Guido van Rossum",
+## "François Pinardn"]])
def test_main():
mod = sys.modules[__name__]