view zipfile.py @ 84:953a5baa406d

Removed tag 2.00.0 with test group support
author Oleg Oshmyan <chortos@inbox.lv>
date Thu, 24 Feb 2011 00:29:32 +0000
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 *