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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
43239dc1
Commit
43239dc1
authored
Feb 17, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
somewhat ugly hack for Py3.1+ to get Cython modules compiled on installation
parent
ea2ad18f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
98 additions
and
63 deletions
+98
-63
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+6
-4
Cython/Compiler/Scanning.py
Cython/Compiler/Scanning.py
+4
-1
Cython/Distutils/__init__.py
Cython/Distutils/__init__.py
+2
-1
Cython/Distutils/build_ext.py
Cython/Distutils/build_ext.py
+10
-16
setup.py
setup.py
+76
-41
No files found.
Cython/Compiler/Parsing.py
View file @
43239dc1
...
@@ -12,9 +12,11 @@ import re
...
@@ -12,9 +12,11 @@ import re
import
sys
import
sys
try
:
try
:
set
from
__builtin__
import
set
except
NameError
:
except
ImportError
:
# Python 2.3
try
:
from
builtins
import
set
except
ImportError
:
from
sets
import
Set
as
set
from
sets
import
Set
as
set
from
Cython.Compiler.Scanning
import
PyrexScanner
,
FileSourceDescriptor
from
Cython.Compiler.Scanning
import
PyrexScanner
,
FileSourceDescriptor
...
...
Cython/Compiler/Scanning.py
View file @
43239dc1
...
@@ -97,7 +97,10 @@ def initial_compile_time_env():
...
@@ -97,7 +97,10 @@ def initial_compile_time_env():
'UNAME_VERSION'
,
'UNAME_MACHINE'
)
'UNAME_VERSION'
,
'UNAME_MACHINE'
)
for
name
,
value
in
zip
(
names
,
platform
.
uname
()):
for
name
,
value
in
zip
(
names
,
platform
.
uname
()):
benv
.
declare
(
name
,
value
)
benv
.
declare
(
name
,
value
)
try
:
import
__builtin__
as
builtins
import
__builtin__
as
builtins
except
ImportError
:
import
builtins
names
=
(
'False'
,
'True'
,
names
=
(
'False'
,
'True'
,
'abs'
,
'bool'
,
'chr'
,
'cmp'
,
'complex'
,
'dict'
,
'divmod'
,
'enumerate'
,
'abs'
,
'bool'
,
'chr'
,
'cmp'
,
'complex'
,
'dict'
,
'divmod'
,
'enumerate'
,
'float'
,
'hash'
,
'hex'
,
'int'
,
'len'
,
'list'
,
'long'
,
'map'
,
'max'
,
'min'
,
'float'
,
'hash'
,
'hex'
,
'int'
,
'len'
,
'list'
,
'long'
,
'map'
,
'max'
,
'min'
,
...
...
Cython/Distutils/__init__.py
View file @
43239dc1
...
@@ -7,5 +7,6 @@
...
@@ -7,5 +7,6 @@
# and keep the old one under the module name _build_ext,
# and keep the old one under the module name _build_ext,
# so that *our* build_ext can make use of it.
# so that *our* build_ext can make use of it.
from
build_ext
import
build_ext
from
Cython.Distutils.build_ext
import
build_ext
# from extension import Extension
# from extension import Extension
Cython/Distutils/build_ext.py
View file @
43239dc1
...
@@ -15,16 +15,6 @@ from distutils.sysconfig import customize_compiler, get_python_version
...
@@ -15,16 +15,6 @@ from distutils.sysconfig import customize_compiler, get_python_version
from
distutils.dep_util
import
newer
,
newer_group
from
distutils.dep_util
import
newer
,
newer_group
from
distutils
import
log
from
distutils
import
log
from
distutils.dir_util
import
mkpath
from
distutils.dir_util
import
mkpath
try
:
from
Cython.Compiler.Main
\
import
CompilationOptions
,
\
default_options
as
pyrex_default_options
,
\
compile
as
cython_compile
from
Cython.Compiler.Errors
import
PyrexError
except
ImportError
,
e
:
print
"failed to import Cython: %s"
%
e
PyrexError
=
None
from
distutils.command
import
build_ext
as
_build_ext
from
distutils.command
import
build_ext
as
_build_ext
extension_name_re
=
_build_ext
.
extension_name_re
extension_name_re
=
_build_ext
.
extension_name_re
...
@@ -83,18 +73,22 @@ class build_ext(_build_ext.build_ext):
...
@@ -83,18 +73,22 @@ class build_ext(_build_ext.build_ext):
self
.
build_extension
(
ext
)
self
.
build_extension
(
ext
)
def
cython_sources
(
self
,
sources
,
extension
):
def
cython_sources
(
self
,
sources
,
extension
):
"""
"""
Walk the list of source files in 'sources', looking for Cython
Walk the list of source files in 'sources', looking for Cython
source files (.pyx and .py). Run Cython on all that are
source files (.pyx and .py). Run Cython on all that are
found, and return a modified 'sources' list with Cython source
found, and return a modified 'sources' list with Cython source
files replaced by the generated C (or C++) files.
files replaced by the generated C (or C++) files.
"""
"""
try
:
if
PyrexError
==
None
:
from
Cython.Compiler.Main
\
raise
DistutilsPlatformError
,
\
import
CompilationOptions
,
\
(
"Cython does not appear to be installed "
default_options
as
pyrex_default_options
,
\
"on platform '%s'"
)
%
os
.
name
compile
as
cython_compile
from
Cython.Compiler.Errors
import
PyrexError
except
ImportError
:
e
=
sys
.
exc_info
()[
1
]
print
(
"failed to import Cython: %s"
%
e
)
raise
DistutilsPlatformError
(
"Cython does not appear to be installed"
)
new_sources
=
[]
new_sources
=
[]
pyrex_sources
=
[]
pyrex_sources
=
[]
...
...
setup.py
View file @
43239dc1
...
@@ -25,6 +25,11 @@ if sys.platform == "darwin":
...
@@ -25,6 +25,11 @@ if sys.platform == "darwin":
setup_args
=
{}
setup_args
=
{}
def
add_command_class
(
name
,
cls
):
cmdclasses
=
setup_args
.
get
(
'cmdclass'
,
{})
cmdclasses
[
name
]
=
cls
setup_args
[
'cmdclass'
]
=
cmdclasses
if
sys
.
version_info
[
0
]
>=
3
:
if
sys
.
version_info
[
0
]
>=
3
:
import
lib2to3.refactor
import
lib2to3.refactor
from
distutils.command.build_py
\
from
distutils.command.build_py
\
...
@@ -34,7 +39,7 @@ if sys.version_info[0] >= 3:
...
@@ -34,7 +39,7 @@ if sys.version_info[0] >= 3:
if
fix
.
split
(
'fix_'
)[
-
1
]
not
in
(
'next'
,)
if
fix
.
split
(
'fix_'
)[
-
1
]
not
in
(
'next'
,)
]
]
build_py
.
fixer_names
=
fixers
build_py
.
fixer_names
=
fixers
setup_args
[
'cmdclass'
]
=
{
"build_py"
:
build_py
}
add_command_class
(
"build_py"
,
build_py
)
if
sys
.
version_info
<
(
2
,
4
):
if
sys
.
version_info
<
(
2
,
4
):
...
@@ -72,14 +77,45 @@ else:
...
@@ -72,14 +77,45 @@ else:
else
:
else
:
scripts
=
[
"cython.py"
]
scripts
=
[
"cython.py"
]
def
compile_cython_modules
():
source_root
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
compiled_modules
=
[
"Cython.Plex.Scanners"
,
"Cython.Compiler.Scanning"
,
"Cython.Compiler.Parsing"
,
"Cython.Compiler.Visitor"
,
"Cython.Runtime.refnanny"
]
extensions
=
[]
try
:
if
sys
.
version_info
[
0
]
>=
3
:
if
sys
.
version_info
[
0
]
>=
3
:
raise
ValueError
from
Cython.Distutils
import
build_ext
as
build_ext_orig
sys
.
argv
.
remove
(
"--no-cython-compile"
)
for
module
in
compiled_modules
:
except
ValueError
:
source_file
=
os
.
path
.
join
(
source_root
,
*
module
.
split
(
'.'
))
try
:
if
os
.
path
.
exists
(
source_file
+
".py"
):
pyx_source_file
=
source_file
+
".py"
else
:
pyx_source_file
=
source_file
+
".pyx"
extensions
.
append
(
Extension
(
module
,
sources
=
[
pyx_source_file
])
)
class
build_ext
(
build_ext_orig
):
def
build_extensions
(
self
):
# add path where 2to3 installed the transformed sources
# and make sure Python (re-)imports them from there
already_imported
=
[
module
for
module
in
sys
.
modules
if
module
==
'Cython'
or
module
.
startswith
(
'Cython.'
)
]
for
module
in
already_imported
:
del
sys
.
modules
[
module
]
sys
.
path
.
insert
(
0
,
os
.
path
.
join
(
source_root
,
self
.
build_lib
))
build_ext_orig
.
build_extensions
(
self
)
setup_args
[
'ext_modules'
]
=
extensions
add_command_class
(
"build_ext"
,
build_ext
)
else
:
# Python 2.x
from
distutils.command.build_ext
import
build_ext
as
build_ext_orig
from
distutils.command.build_ext
import
build_ext
as
build_ext_orig
try
:
class
build_ext
(
build_ext_orig
):
class
build_ext
(
build_ext_orig
):
def
build_extension
(
self
,
ext
,
*
args
,
**
kargs
):
def
build_extension
(
self
,
ext
,
*
args
,
**
kargs
):
try
:
try
:
...
@@ -89,12 +125,6 @@ except ValueError:
...
@@ -89,12 +125,6 @@ except ValueError:
from
Cython.Compiler.Main
import
compile
from
Cython.Compiler.Main
import
compile
from
Cython
import
Utils
from
Cython
import
Utils
source_root
=
os
.
path
.
dirname
(
__file__
)
source_root
=
os
.
path
.
dirname
(
__file__
)
compiled_modules
=
[
"Cython.Plex.Scanners"
,
"Cython.Compiler.Scanning"
,
"Cython.Compiler.Parsing"
,
"Cython.Compiler.Visitor"
,
"Cython.Runtime.refnanny"
]
extensions
=
[]
for
module
in
compiled_modules
:
for
module
in
compiled_modules
:
source_file
=
os
.
path
.
join
(
source_root
,
*
module
.
split
(
'.'
))
source_file
=
os
.
path
.
join
(
source_root
,
*
module
.
split
(
'.'
))
if
os
.
path
.
exists
(
source_file
+
".py"
):
if
os
.
path
.
exists
(
source_file
+
".py"
):
...
@@ -116,11 +146,16 @@ except ValueError:
...
@@ -116,11 +146,16 @@ except ValueError:
print
(
"Compilation failed"
)
print
(
"Compilation failed"
)
if
extensions
:
if
extensions
:
setup_args
[
'ext_modules'
]
=
extensions
setup_args
[
'ext_modules'
]
=
extensions
setup_args
[
'cmdclass'
]
=
{
"build_ext"
:
build_ext
}
add_command_class
(
"build_ext"
,
build_ext
)
except
Exception
:
except
Exception
:
print
(
"ERROR: %s"
%
sys
.
exc_info
()[
1
])
print
(
"ERROR: %s"
%
sys
.
exc_info
()[
1
])
print
(
"Extension module compilation failed, using plain Python implementation"
)
print
(
"Extension module compilation failed, using plain Python implementation"
)
try
:
sys
.
argv
.
remove
(
"--no-cython-compile"
)
except
ValueError
:
compile_cython_modules
()
setup_args
.
update
(
setuptools_extra_args
)
setup_args
.
update
(
setuptools_extra_args
)
from
Cython.Compiler.Version
import
version
from
Cython.Compiler.Version
import
version
...
...
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