diff options
author | Guido van Rossum <guido@python.org> | 2007-06-07 00:54:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-06-07 00:54:15 (GMT) |
commit | 9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1 (patch) | |
tree | 80f78198ee6b9b7bd28d1124d62438f7b796c10d /Lib/test/test_tarfile.py | |
parent | e7ba4956272a7105ea90dd505f70e5947aa27161 (diff) | |
download | cpython-9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1.zip cpython-9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1.tar.gz cpython-9cbfffd1a63ee944dedda758ac1d1963d4cbf3b1.tar.bz2 |
tokenizer.c: make coding markup work again.
io.open() now takes all positional parameters (so we can conveniently
call it from C code).
test_tarfile.py no longer uses u"..." literals, but is otherwise still
badly broken.
This is a checkpoint; some more stuff now breaks.
Diffstat (limited to 'Lib/test/test_tarfile.py')
-rw-r--r-- | Lib/test/test_tarfile.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py index 636a45e..39504e1 100644 --- a/Lib/test/test_tarfile.py +++ b/Lib/test/test_tarfile.py @@ -432,17 +432,17 @@ class PaxReadTest(LongnameTest): tarinfo = tar.getmember("pax/regtype1") self.assertEqual(tarinfo.uname, "foo") self.assertEqual(tarinfo.gname, "bar") - self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"), u"ÄÖÜäöüß") + self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"), "ÄÖÜäöüß") tarinfo = tar.getmember("pax/regtype2") self.assertEqual(tarinfo.uname, "") self.assertEqual(tarinfo.gname, "bar") - self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"), u"ÄÖÜäöüß") + self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"), "ÄÖÜäöüß") tarinfo = tar.getmember("pax/regtype3") self.assertEqual(tarinfo.uname, "tarfile") self.assertEqual(tarinfo.gname, "tarfile") - self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"), u"ÄÖÜäöüß") + self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"), "ÄÖÜäöüß") def test_pax_number_fields(self): # All following number fields are read from the pax header. @@ -727,11 +727,11 @@ class PaxWriteTest(GNUWriteTest): def test_pax_global_header(self): pax_headers = { - u"foo": u"bar", - u"uid": u"0", - u"mtime": u"1.23", - u"test": u"äöü", - u"äöü": u"test"} + "foo": "bar", + "uid": "0", + "mtime": "1.23", + "test": "äöü", + "äöü": "test"} tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT, \ pax_headers=pax_headers) @@ -756,11 +756,11 @@ class PaxWriteTest(GNUWriteTest): def test_pax_extended_header(self): # The fields from the pax header have priority over the # TarInfo. - pax_headers = {u"path": u"foo", u"uid": u"123"} + pax_headers = {"path": "foo", "uid": "123"} tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT, encoding="iso8859-1") t = tarfile.TarInfo() - t.name = u"äöü" # non-ASCII + t.name = "äöü" # non-ASCII t.uid = 8**8 # too large t.pax_headers = pax_headers tar.addfile(t) @@ -808,11 +808,11 @@ class UstarUnicodeTest(unittest.TestCase): else: tar.addfile(tarinfo) - tarinfo.name = u"äöü" + tarinfo.name = "äöü" self.assertRaises(UnicodeError, tar.addfile, tarinfo) tarinfo.name = "foo" - tarinfo.uname = u"äöü" + tarinfo.uname = "äöü" self.assertRaises(UnicodeError, tar.addfile, tarinfo) def test_unicode_argument(self): @@ -825,7 +825,7 @@ class UstarUnicodeTest(unittest.TestCase): tar.close() def test_uname_unicode(self): - for name in (u"äöü", "äöü"): + for name in ("äöü", "äöü"): t = tarfile.TarInfo("foo") t.uname = name t.gname = name @@ -860,9 +860,9 @@ class PaxUnicodeTest(UstarUnicodeTest): def test_error_handlers(self): # Test if the unicode error handlers work correctly for characters # that cannot be expressed in a given encoding. - self._create_unicode_name(u"äöü") + self._create_unicode_name("äöü") - for handler, name in (("utf-8", u"äöü".encode("utf8")), + for handler, name in (("utf-8", "äöü".encode("utf8")), ("replace", "???"), ("ignore", "")): tar = tarfile.open(tmpname, format=self.format, encoding="ascii", errors=handler) @@ -874,11 +874,11 @@ class PaxUnicodeTest(UstarUnicodeTest): def test_error_handler_utf8(self): # Create a pathname that has one component representable using # iso8859-1 and the other only in iso8859-15. - self._create_unicode_name(u"äöü/¤") + self._create_unicode_name("äöü/¤") tar = tarfile.open(tmpname, format=self.format, encoding="iso8859-1", errors="utf-8") - self.assertEqual(tar.getnames()[0], "äöü/" + u"¤".encode("utf8")) + self.assertEqual(tar.getnames()[0], "äöü/" + "¤".encode("utf8")) class AppendTest(unittest.TestCase): |