*** zipfile.py.old Wed Jul 30 17:26:42 2003 --- zipfile.py Wed Jul 30 17:26:43 2003 *************** *** 23,33 **** # Other ZIP compression methods not supported # Here are some struct module formats for reading headers ! structEndArchive = "<4s4H2lH" # 9 items, end of archive, 22 bytes stringEndArchive = "PK\005\006" # magic number for end of archive record ! structCentralDir = "<4s4B4H3l5H2l"# 19 items, central directory, 46 bytes stringCentralDir = "PK\001\002" # magic number for central directory ! structFileHeader = "<4s2B4H3l2H" # 12 items, file header record, 30 bytes stringFileHeader = "PK\003\004" # magic number for file header # indexes of entries in the central directory structure --- 23,33 ---- # Other ZIP compression methods not supported # Here are some struct module formats for reading headers ! structEndArchive = "<4s4H2LH" # 9 items, end of archive, 22 bytes stringEndArchive = "PK\005\006" # magic number for end of archive record ! structCentralDir = "<4s4B4H3L5H2L"# 19 items, central directory, 46 bytes stringCentralDir = "PK\001\002" # magic number for central directory ! structFileHeader = "<4s2B4H3L2H" # 12 items, file header record, 30 bytes stringFileHeader = "PK\003\004" # magic number for file header # indexes of entries in the central directory structure