Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
news
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sartika Aritonang
news
Commits
b443c85c
Commit
b443c85c
authored
May 29, 2020
by
Sartika Aritonang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
4f613b4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
+57
-0
extension.py
stbi/Lib/site-packages/setuptools/extension.py
+57
-0
No files found.
stbi/Lib/site-packages/setuptools/extension.py
0 → 100644
View file @
b443c85c
import
re
import
functools
import
distutils.core
import
distutils.errors
import
distutils.extension
from
setuptools.extern.six.moves
import
map
from
.monkey
import
get_unpatched
def
_have_cython
():
"""
Return True if Cython can be imported.
"""
cython_impl
=
'Cython.Distutils.build_ext'
try
:
# from (cython_impl) import build_ext
__import__
(
cython_impl
,
fromlist
=
[
'build_ext'
])
.
build_ext
return
True
except
Exception
:
pass
return
False
# for compatibility
have_pyrex
=
_have_cython
_Extension
=
get_unpatched
(
distutils
.
core
.
Extension
)
class
Extension
(
_Extension
):
"""Extension that uses '.c' files in place of '.pyx' files"""
def
__init__
(
self
,
name
,
sources
,
*
args
,
**
kw
):
# The *args is needed for compatibility as calls may use positional
# arguments. py_limited_api may be set only via keyword.
self
.
py_limited_api
=
kw
.
pop
(
"py_limited_api"
,
False
)
_Extension
.
__init__
(
self
,
name
,
sources
,
*
args
,
**
kw
)
def
_convert_pyx_sources_to_lang
(
self
):
"""
Replace sources with .pyx extensions to sources with the target
language extension. This mechanism allows language authors to supply
pre-converted sources but to prefer the .pyx sources.
"""
if
_have_cython
():
# the build has Cython, so allow it to compile the .pyx files
return
lang
=
self
.
language
or
''
target_ext
=
'.cpp'
if
lang
.
lower
()
==
'c++'
else
'.c'
sub
=
functools
.
partial
(
re
.
sub
,
'.pyx$'
,
target_ext
)
self
.
sources
=
list
(
map
(
sub
,
self
.
sources
))
class
Library
(
Extension
):
"""Just like a regular Extension, but built as a library instead"""
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