(self)
| 1943 | |
| 1944 | @requires_zlib() |
| 1945 | def test_read_unicode_filenames(self): |
| 1946 | # bug #10801 |
| 1947 | fname = findfile('zip_cp437_header.zip', subdir='archivetestdata') |
| 1948 | with zipfile.ZipFile(fname) as zipfp: |
| 1949 | for name in zipfp.namelist(): |
| 1950 | zipfp.open(name).close() |
| 1951 | |
| 1952 | def test_write_unicode_filenames(self): |
| 1953 | with zipfile.ZipFile(TESTFN, "w") as zf: |