Commit a9fb7768 authored by Stefan Behnel's avatar Stefan Behnel

Fix cython.inline() in Py3.4 by making it use the legacy fallback code for...

Fix cython.inline() in Py3.4 by making it use the legacy fallback code for extension module loading.
parent 02a6a713
......@@ -35,7 +35,7 @@ else:
to_unicode = lambda x: x
if sys.version_info < (3, 3):
if sys.version_info < (3, 5):
import imp
def load_dynamic(name, module_path):
return imp.load_dynamic(name, module_path)
......
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