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/tests/test_build_ext.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/tests/test_build_ext.py')
-rw-r--r-- | setuptools/tests/test_build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_build_ext.py b/setuptools/tests/test_build_ext.py index c71aadca..100869f6 100644 --- a/setuptools/tests/test_build_ext.py +++ b/setuptools/tests/test_build_ext.py @@ -28,7 +28,7 @@ class TestBuildExt: """ print(get_abi3_suffix()) - extension = Extension('spam.eggs', ['eggs.c'], is_abi3=True) + extension = Extension('spam.eggs', ['eggs.c'], py_limited_api=True) dist = Distribution(dict(ext_modules=[extension])) cmd = build_ext(dist) cmd.finalize_options() |