Commit e7f57961 authored by Jason Madden's avatar Jason Madden

debugging for appveyor

parent e9908ac9
IF "%PYTHON_EXE%" == "python" ( IF "%PYTHON_EXE%" == "python" (
%PYEXE% util/cythonpp.py -o gevent.corecext.c gevent/corecext.ppyx %PYEXE% util\cythonpp.py -o gevent.corecext.c gevent\corecext.ppyx
type gevent\\callbacks.c >> gevent.corecext.c type gevent\callbacks.c >> gevent.corecext.c
move gevent.corecext.* gevent move gevent.corecext.* gevent
) )
cython -o gevent.ares.c gevent/ares.pyx cython -o gevent.ares.c gevent\ares.pyx
move gevent.ares.* gevent move gevent.ares.* gevent
cython -o gevent._semaphore.c gevent/_semaphore.py cython -o gevent._semaphore.c gevent\_semaphore.py
move gevent._semaphore.* gevent move gevent._semaphore.* gevent
...@@ -425,9 +425,9 @@ def _run_cython_on_file(configuration, pyx_filename, ...@@ -425,9 +425,9 @@ def _run_cython_on_file(configuration, pyx_filename,
unique_output_filename = os.path.join(tempdir, output_filename) unique_output_filename = os.path.join(tempdir, output_filename)
dirname = os.path.dirname(unique_pyx_filename) # output must be in same dir dirname = os.path.dirname(unique_pyx_filename) # output must be in same dir
dbg("Output filename %s", unique_output_filename) log("Output filename %s", unique_output_filename)
if dirname and not os.path.exists(dirname): if dirname and not os.path.exists(dirname):
dbg("Making dir %s", dirname) log("Making dir %s", dirname)
os.makedirs(dirname) os.makedirs(dirname)
try: try:
atomic_write(unique_pyx_filename, py_banner + value) atomic_write(unique_pyx_filename, py_banner + value)
......
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