Mercurial > ~astiob > upreckon > hgweb
view 2.00/zipfile.py @ 27:dc4be35d17e0
Bug fixes
Bug fix: compat.py now works in Python 3 (module __builtin__ was renamed builtins).
Bug fix: random spaces in the indentation of testcases.py have been removed.
Bug fix: false dummy{in,out}name's are now again replaced with the values of testcase{in,out}name.
author | Oleg Oshmyan <chortos@inbox.lv> |
---|---|
date | Fri, 15 Oct 2010 22:17:31 +0000 |
parents | ec6f1a132109 |
children | a8cc383b787c |
line wrap: on
line source
import sys if sys.version_info[0] == 3: from zipfile3 import * else: from zipfile2 import *