Mercurial > ~astiob > upreckon > hgweb
view zipfile.py @ 53:394aec9712b6
Improved portability of publish.sh
The regular expression used with sed now uses the basic syntax.
author | Oleg Oshmyan <chortos@inbox.lv> |
---|---|
date | Mon, 20 Dec 2010 17:26:34 +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 *