view zipfile.py @ 75:007f7eb6fb2b

The test context stack is now a deque. Deques have a faster pop() than lists do.
author Oleg Oshmyan <chortos@inbox.lv>
date Thu, 06 Jan 2011 23:53:31 +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 *