diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-09-01 14:21:22 +0200 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-09-01 14:21:22 +0200 |
commit | f36f84003150846a1c4d42a3a7ae3fd5aa4af42e (patch) | |
tree | 6455c4ad91df90c979108c89f3bbadceef8c6500 /setup.py | |
parent | a2d8402f182c1a2c25593e2f0991d0c28e497367 (diff) | |
download | cpython-f36f84003150846a1c4d42a3a7ae3fd5aa4af42e.tar.gz |
Compile _decimal without asserts and update benchmark results.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1897,7 +1897,7 @@ class PyBuildExt(build_ext): def _decimal_ext(self): extra_compile_args = [] - undef_macros = ['NDEBUG'] + undef_macros = [] if '--with-system-libmpdec' in sysconfig.get_config_var("CONFIG_ARGS"): include_dirs = [] libraries = ['mpdec'] |