Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
c8da4c33
Commit
c8da4c33
authored
Mar 10, 2014
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
self.language could be None (and is None by default)
parent
261a4ed0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
setuptools/extension.py
setuptools/extension.py
+2
-1
No files found.
setuptools/extension.py
View file @
c8da4c33
...
...
@@ -38,7 +38,8 @@ class Extension(_Extension):
# the build has Cython, so allow it to compile the .pyx files
return
def
pyx_to_target
(
source
):
target_ext
=
'.cpp'
if
self
.
language
.
lower
()
==
'c++'
else
'.c'
lang
=
self
.
language
or
''
target_ext
=
'.cpp'
if
lang
.
lower
()
==
'c++'
else
'.c'
if
source
.
endswith
(
'.pyx'
):
source
=
source
[:
-
4
]
+
target_ext
return
source
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment