diff options
| author | Naoki INADA <inada-n@klab.jp> | 2009-06-17 13:45:08 +0900 |
|---|---|---|
| committer | Naoki INADA <inada-n@klab.jp> | 2009-06-17 13:45:08 +0900 |
| commit | 2475187c7d7dc32d3abf825f97f9d7acaaa58e47 (patch) | |
| tree | 62ab027784e606f99bb35f04c210a057b88d149f /python/setup.py | |
| parent | 4d6e9ffaa2f1626e38fbc7ab5d08578213295a65 (diff) | |
| download | msgpack-python-2475187c7d7dc32d3abf825f97f9d7acaaa58e47.tar.gz | |
Fix refcount leak and optimize list initialization.
Diffstat (limited to 'python/setup.py')
| -rw-r--r-- | python/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/setup.py b/python/setup.py index e5651a0..4bb8693 100644 --- a/python/setup.py +++ b/python/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup, Extension version = '0.0.1' -msgpack_mod = Extension('msgpack', sources=['msgpack.c']) +msgpack_mod = Extension('msgpack', sources=['msgpack.c'], extra_compile_args=["-O3"]) desc = 'MessagePack serializer/desirializer.' long_desc = desc + """ |
