diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 +0000 |
commit | 584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (patch) | |
tree | f2e33dbae88a59b367819920a5c4a2260f080788 /Lib/setuptools/extension.py | |
parent | 17a35f906c29e71510d749283b381d95a5de0316 (diff) | |
download | cpython-git-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.gz |
Whilespace normalization (reindint.py).
Diffstat (limited to 'Lib/setuptools/extension.py')
-rw-r--r-- | Lib/setuptools/extension.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/setuptools/extension.py b/Lib/setuptools/extension.py index 2bef84e523..cfcf55bf1a 100644 --- a/Lib/setuptools/extension.py +++ b/Lib/setuptools/extension.py @@ -14,7 +14,7 @@ class Extension(_Extension): """Extension that uses '.c' files in place of '.pyx' files""" if not have_pyrex: - # convert .pyx extensions to .c + # convert .pyx extensions to .c def __init__(self,*args,**kw): _Extension.__init__(self,*args,**kw) sources = [] @@ -33,4 +33,3 @@ distutils.core.Extension = Extension distutils.extension.Extension = Extension if 'distutils.command.build_ext' in sys.modules: sys.modules['distutils.command.build_ext'].Extension = Extension - |