Mercurial > ~astiob > upreckon > hgweb
view zipfile.py @ 57:855bdfeb32a6
NameErrors within call() are now reported
author | Oleg Oshmyan <chortos@inbox.lv> |
---|---|
date | Tue, 21 Dec 2010 02:28:57 +0200 |
parents | 4ea7133ac25c |
children | bbf9c434fa57 |
line wrap: on
line source
import sys if sys.version_info[0] >= 3: from zipfile31 import * elif sys.version_info[1] >= 7: from zipfile27 import * else: from zipfile26 import *