mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 20:03:16 +00:00
Fix refcount leak and optimize list initialization.
This commit is contained in:
parent
4ab64bf949
commit
8ca2c441c9
3 changed files with 142 additions and 134 deletions
2
setup.py
2
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 + """
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue