Mercurial > ~astiob > upreckon > hgweb
view 2.00/zipfile.py @ 45:5afefe51dcdc
Initial rename to Upreckon
Bonus: eliminated the last remaining mentions of Subversion.
| author | Oleg Oshmyan <chortos@inbox.lv> |
|---|---|
| date | Sun, 19 Dec 2010 19:34:20 +0200 |
| parents | a8cc383b787c |
| children |
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 *
