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
c1fc77d5
Commit
c1fc77d5
authored
Oct 22, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code cleanup
parent
f856a434
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
Cython/Compiler/Dependencies.py
Cython/Compiler/Dependencies.py
+9
-9
Cython/Distutils/build_ext.py
Cython/Distutils/build_ext.py
+1
-1
No files found.
Cython/Compiler/Dependencies.py
View file @
c1fc77d5
...
...
@@ -274,7 +274,7 @@ class DependencyTree(object):
def
find_pxd
(
self
,
module
,
filename
=
None
):
if
module
[
0
]
==
'.'
:
raise
NotImplementedError
,
"New relative imports."
raise
NotImplementedError
(
"New relative imports."
)
if
filename
is
not
None
:
relative
=
'.'
.
join
(
self
.
package
(
filename
)
+
tuple
(
module
.
split
(
'.'
)))
pxd
=
self
.
context
.
find_pxd_file
(
relative
,
None
)
...
...
@@ -291,9 +291,9 @@ class DependencyTree(object):
a
=
self
.
cimports
(
filename
)
b
=
filter
(
None
,
[
self
.
find_pxd
(
m
,
filename
)
for
m
in
self
.
cimports
(
filename
)])
if
len
(
a
)
!=
len
(
b
):
print
(
filename
)
print
(
"
\
n
\
t
"
.
join
(
a
))
print
(
"
\
n
\
t
"
.
join
(
b
))
print
(
filename
)
print
(
"
\
n
\
t
"
.
join
(
a
))
print
(
"
\
n
\
t
"
.
join
(
b
))
return
tuple
(
self_pxd
+
filter
(
None
,
[
self
.
find_pxd
(
m
,
filename
)
for
m
in
self
.
cimports
(
filename
)]))
cimported_files
=
cached_method
(
cimported_files
)
...
...
@@ -392,7 +392,7 @@ def create_extension_list(patterns, ctx=None, aliases=None):
base
=
DistutilsInfo
(
template
)
exn_type
=
type
(
template
)
else
:
raise
TypeError
,
pattern
raise
TypeError
(
pattern
)
for
file
in
glob
(
filepattern
):
pkg
=
deps
.
package
(
file
)
if
name
==
'*'
:
...
...
@@ -428,7 +428,7 @@ def cythonize(module_list, ctx=None, nthreads=0, aliases=None):
dep_timestamp
,
dep
=
deps
.
newest_dependency
(
source
)
priority
=
2
-
(
dep
in
deps
.
immediate_dependencies
(
source
))
if
c_timestamp
<
dep_timestamp
:
print
"Compiling"
,
source
,
"because it depends on"
,
dep
print
(
"Compiling %s because it depends on %s"
%
(
source
,
dep
))
to_compile
.
append
((
priority
,
source
,
c_file
))
new_sources
.
append
(
c_file
)
else
:
...
...
@@ -441,7 +441,7 @@ def cythonize(module_list, ctx=None, nthreads=0, aliases=None):
try
:
import
multiprocessing
except
ImportError
:
print
"multiprocessing required for parallel cythonization"
print
(
"multiprocessing required for parallel cythonization"
)
nthreads
=
0
pool
=
multiprocessing
.
Pool
(
nthreads
)
pool
.
map
(
cythonoize_one_helper
,
to_compile
)
...
...
@@ -454,9 +454,9 @@ cython_py = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../cytho
def
cythonoize_one
(
pyx_file
,
c_file
):
cmd
=
"%s %s %s -o %s"
%
(
sys
.
executable
,
cython_py
,
pyx_file
,
c_file
)
print
cmd
print
(
cmd
)
if
os
.
system
(
cmd
)
!=
0
:
raise
CompilerError
,
pyx_file
raise
CompilerError
(
pyx_file
)
def
cythonoize_one_helper
(
m
):
return
cythonoize_one
(
*
m
[
1
:])
Cython/Distutils/build_ext.py
View file @
c1fc77d5
...
...
@@ -3,7 +3,7 @@
Implements a version of the Distutils 'build_ext' command, for
building Cython extension modules."""
# This module should be kept compatible with Python 2.
1
.
# This module should be kept compatible with Python 2.
3
.
__revision__
=
"$Id:$"
...
...
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