diff options
author | Baruch Sterin <baruchs@gmail.com> | 2012-02-23 13:28:07 -0800 |
---|---|---|
committer | Baruch Sterin <baruchs@gmail.com> | 2012-02-23 13:28:07 -0800 |
commit | 4ade9fc7c89c7ee921fb4e159d2e31a531cf4db5 (patch) | |
tree | 189e8868fa727011a00f743a98c2dd6c764954df /src | |
parent | af51bdaf3ee3684ebccd14fa0546085fcf147139 (diff) | |
download | abc-4ade9fc7c89c7ee921fb4e159d2e31a531cf4db5.tar.gz abc-4ade9fc7c89c7ee921fb4e159d2e31a531cf4db5.tar.bz2 abc-4ade9fc7c89c7ee921fb4e159d2e31a531cf4db5.zip |
pyabc: python 2.6 compatibility fix for previous commit (which silenced warnings)
Diffstat (limited to 'src')
-rw-r--r-- | src/python/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/setup.py b/src/python/setup.py index 032d28e5..6d2156c5 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -1,10 +1,10 @@ import sys -import sysconfig from distutils.core import setup, Extension from distutils.sysconfig import get_config_vars from distutils import util from distutils.command.build_ext import build_ext +from distutils import sysconfig define_macros = [] libraries = [] |