Jasmijn Bastings

Results 1 issues of Jasmijn Bastings

setup.py gives a UnicodeDecodeError in Python 3.4.1 because of line 10: ```python def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read()` ``` It is possible to fix for py2/py3 this by using ```python from...