Warn when use_list is not specified.

Conflicts:
	test/test_sequnpack.py
This commit is contained in:
INADA Naoki 2012-09-24 02:12:55 +09:00
parent c3da845868
commit d503788e95
7 changed files with 36 additions and 23 deletions

View file

@ -18,7 +18,7 @@ except ImportError:
def cythonize(src):
sys.stderr.write("cythonize: %r\n" % (src,))
cython_compiler.compile([src])
cython_compiler.compile([src], emit_linenums=True)
def ensure_source(src):
pyx = os.path.splitext(src)[0] + '.pyx'