summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2012-09-24 02:12:55 +0900
committerINADA Naoki <inada-n@klab.com>2012-09-24 02:38:54 +0900
commitd503788e9537498ff2ed0da1f836dc4de6074981 (patch)
tree0b060a16d0b08ea4c22e7c057e41664acd00700c /setup.py
parentc3da8458681fc479233910d4c92dc84374e5efed (diff)
downloadmsgpack-python-d503788e9537498ff2ed0da1f836dc4de6074981.tar.gz
Warn when use_list is not specified.
Conflicts: test/test_sequnpack.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 86b0b34..9f0ce5d 100644
--- a/setup.py
+++ b/setup.py
@@ -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'