Commit fe78837b authored by Stefan Behnel's avatar Stefan Behnel

Py2.4 fix

parent d46eb874
import cython
from Cython import __version__
from glob import iglob
import re, os, sys, time
try:
from glob import iglob
except ImportError:
# Py2.4
from glob import glob as iglob
try:
import gzip
gzip_open = gzip.open
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment