diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-28 13:41:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-28 13:41:39 -0400 |
| commit | 2e12ebafbfad2bb0e565f141e412a050babcdd35 (patch) | |
| tree | 40ea155756ce6ace5e17f37d8477edc85cabbe3e /setuptools/command | |
| parent | d382def1367e9d9b288e9b04b6f2da5987052b5b (diff) | |
| parent | dd25d1f858cd02211f4d105ab19d6c3ce90d4048 (diff) | |
| download | python-setuptools-git-2e12ebafbfad2bb0e565f141e412a050babcdd35.tar.gz | |
Merge pull request #828 from stepshal/hash
Fix spacing after comment hash.
Diffstat (limited to 'setuptools/command')
| -rw-r--r-- | setuptools/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index 12dc88cd..a66e0bf3 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -62,7 +62,7 @@ if_dl = lambda s: s if have_rtld else '' def get_abi3_suffix(): """Return the file extension for an abi3-compliant Extension()""" for suffix, _, _ in (s for s in imp.get_suffixes() if s[2] == imp.C_EXTENSION): - if '.abi3' in suffix: # Unix + if '.abi3' in suffix: # Unix return suffix elif suffix == '.pyd': # Windows return suffix |
