| LEFT | RIGHT |
| 1 :mod:`zipfile` --- Work with ZIP archives | 1 :mod:`zipfile` --- Work with ZIP archives |
| 2 ========================================= | 2 ========================================= |
| 3 | 3 |
| 4 .. module:: zipfile | 4 .. module:: zipfile |
| 5 :synopsis: Read and write ZIP-format archive files. | 5 :synopsis: Read and write ZIP-format archive files. |
| 6 .. moduleauthor:: James C. Ahlstrom <jim@interet.com> | 6 .. moduleauthor:: James C. Ahlstrom <jim@interet.com> |
| 7 .. sectionauthor:: James C. Ahlstrom <jim@interet.com> | 7 .. sectionauthor:: James C. Ahlstrom <jim@interet.com> |
| 8 | 8 |
| 9 **Source code:** :source:`Lib/zipfile.py` | 9 **Source code:** :source:`Lib/zipfile.py` |
| 10 | 10 |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 | 510 |
| 511 .. attribute:: ZipInfo.compress_size | 511 .. attribute:: ZipInfo.compress_size |
| 512 | 512 |
| 513 Size of the compressed data. | 513 Size of the compressed data. |
| 514 | 514 |
| 515 | 515 |
| 516 .. attribute:: ZipInfo.file_size | 516 .. attribute:: ZipInfo.file_size |
| 517 | 517 |
| 518 Size of the uncompressed file. | 518 Size of the uncompressed file. |
| 519 | 519 |
| LEFT | RIGHT |