Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
9f0e25f7
Commit
9f0e25f7
authored
Jun 14, 2016
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple cythonize build_ext.
parent
f7de8054
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
Cython/Build/Distutils.py
Cython/Build/Distutils.py
+13
-0
Cython/Build/__init__.py
Cython/Build/__init__.py
+1
-0
No files found.
Cython/Build/Distutils.py
0 → 100644
View file @
9f0e25f7
import
sys
from
.Dependencies
import
cythonize
if
'setuptools'
is
sys
.
modules
:
from
setuptools.command
import
build_ext
as
_build_ext
else
:
from
distutils.command
import
build_ext
as
_build_ext
class
build_ext
(
_build_ext
.
build_ext
):
def
finalize_options
(
self
):
self
.
distribution
.
ext_modules
[:]
=
cythonize
(
self
.
distribution
.
ext_modules
)
super
(
build_ext
,
self
).
finalize_options
()
Cython/Build/__init__.py
View file @
9f0e25f7
from
.Dependencies
import
cythonize
from
.Distutils
import
build_ext
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