diff options
author | Daniel Holth <dholth@fastmail.fm> | 2016-08-05 07:55:57 -0400 |
---|---|---|
committer | Daniel Holth <dholth@fastmail.fm> | 2016-08-05 07:55:57 -0400 |
commit | 702a4277768f0781e3d0a4cf770d29621f7f2cc3 (patch) | |
tree | e6a6745b76b741ec8963d38f962e3d0073a6177e /setuptools/extension.py | |
parent | dab253cb72eb7c098393f985e32585e079607f66 (diff) | |
download | external_python_setuptools-702a4277768f0781e3d0a4cf770d29621f7f2cc3.tar.gz external_python_setuptools-702a4277768f0781e3d0a4cf770d29621f7f2cc3.tar.bz2 external_python_setuptools-702a4277768f0781e3d0a4cf770d29621f7f2cc3.zip |
rename is_abi3 to py_limited_api
Diffstat (limited to 'setuptools/extension.py')
-rw-r--r-- | setuptools/extension.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/extension.py b/setuptools/extension.py index a6cc0915..c8e9bc7d 100644 --- a/setuptools/extension.py +++ b/setuptools/extension.py @@ -36,8 +36,8 @@ have_pyrex = _have_cython class Extension(_Extension): """Extension that uses '.c' files in place of '.pyx' files""" - def __init__(self, name, sources, is_abi3=False, **kw): - self.is_abi3 = is_abi3 + def __init__(self, name, sources, py_limited_api=False, **kw): + self.py_limited_api = py_limited_api _Extension.__init__(self, name, sources, **kw) def _convert_pyx_sources_to_lang(self): |