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
Kirill Smelkov
cython
Commits
b16f44a4
Commit
b16f44a4
authored
Oct 23, 2009
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
applied pyximport patch from ticket 312
parent
a7e5883e
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
173 additions
and
69 deletions
+173
-69
pyximport/pyxbuild.py
pyximport/pyxbuild.py
+49
-16
pyximport/pyximport.py
pyximport/pyximport.py
+124
-53
No files found.
pyximport/pyxbuild.py
View file @
b16f44a4
...
...
@@ -6,7 +6,6 @@ out_fname = pyx_to_dll("foo.pyx")
import
os
import
sys
import
distutils
from
distutils.dist
import
Distribution
from
distutils.errors
import
DistutilsArgError
,
DistutilsError
,
CCompilerError
from
distutils.extension
import
Extension
...
...
@@ -16,11 +15,13 @@ try:
HAS_CYTHON
=
True
except
ImportError
:
HAS_CYTHON
=
False
import
shutil
DEBUG
=
0
_reloads
=
{}
def
pyx_to_dll
(
filename
,
ext
=
None
,
force_rebuild
=
0
,
build_in_temp
=
False
,
pyxbuild_dir
=
None
):
build_in_temp
=
False
,
pyxbuild_dir
=
None
,
setup_args
=
{},
reload_support
=
False
):
"""Compile a PYX file to a DLL and return the name of the generated .so
or .dll ."""
assert
os
.
path
.
exists
(
filename
),
"Could not find %s"
%
os
.
path
.
abspath
(
filename
)
...
...
@@ -37,7 +38,8 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0,
if
not
pyxbuild_dir
:
pyxbuild_dir
=
os
.
path
.
join
(
path
,
"_pyxbld"
)
if
DEBUG
:
script_args
=
setup_args
.
get
(
"script_args"
,[])
if
DEBUG
or
"--verbose"
in
script_args
:
quiet
=
"--verbose"
else
:
quiet
=
"--quiet"
...
...
@@ -46,7 +48,11 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0,
args
.
append
(
"--force"
)
if
HAS_CYTHON
and
build_in_temp
:
args
.
append
(
"--pyrex-c-in-temp"
)
dist
=
Distribution
({
"script_name"
:
None
,
"script_args"
:
args
})
sargs
=
setup_args
.
copy
()
sargs
.
update
(
{
"script_name"
:
None
,
"script_args"
:
args
+
script_args
}
)
dist
=
Distribution
(
sargs
)
if
not
dist
.
ext_modules
:
dist
.
ext_modules
=
[]
dist
.
ext_modules
.
append
(
ext
)
...
...
@@ -60,6 +66,10 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0,
except
ValueError
:
pass
dist
.
parse_config_files
(
config_files
)
cfgfiles
=
dist
.
find_config_files
()
try
:
cfgfiles
.
remove
(
'setup.cfg'
)
except
ValueError
:
pass
dist
.
parse_config_files
(
cfgfiles
)
try
:
ok
=
dist
.
parse_command_line
()
except
DistutilsArgError
:
...
...
@@ -73,7 +83,39 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0,
try
:
dist
.
run_commands
()
return
dist
.
get_command_obj
(
"build_ext"
).
get_outputs
()[
0
]
obj_build_ext
=
dist
.
get_command_obj
(
"build_ext"
)
so_path
=
obj_build_ext
.
get_outputs
()[
0
]
if
obj_build_ext
.
inplace
:
# Python distutils get_outputs()[ returns a wrong so_path
# when --inplace ; see http://bugs.python.org/issue5977
# workaround:
so_path
=
os
.
path
.
join
(
os
.
path
.
dirname
(
filename
),
os
.
path
.
basename
(
so_path
))
if
reload_support
:
org_path
=
so_path
timestamp
=
os
.
path
.
getmtime
(
org_path
)
global
_reloads
last_timestamp
,
last_path
,
count
=
_reloads
.
get
(
org_path
,
(
None
,
None
,
0
)
)
if
last_timestamp
==
timestamp
:
so_path
=
last_path
else
:
basename
=
os
.
path
.
basename
(
org_path
)
while
count
<
100
:
count
+=
1
r_path
=
os
.
path
.
join
(
obj_build_ext
.
build_lib
,
basename
+
'.reload%s'
%
count
)
try
:
import
shutil
# late import / reload_support is: debugging
shutil
.
copy2
(
org_path
,
r_path
)
so_path
=
r_path
except
IOError
:
continue
break
else
:
# used up all 100 slots
raise
ImportError
(
"reload count for %s reached maximum"
%
org_path
)
_reloads
[
org_path
]
=
(
timestamp
,
so_path
,
count
)
return
so_path
except
KeyboardInterrupt
:
sys
.
exit
(
1
)
except
(
IOError
,
os
.
error
):
...
...
@@ -82,16 +124,7 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0,
if
DEBUG
:
sys
.
stderr
.
write
(
error
+
"
\
n
"
)
raise
else
:
raise
RuntimeError
(
error
)
except
(
DistutilsError
,
CCompilerError
):
if
DEBUG
:
raise
else
:
exc
=
sys
.
exc_info
()[
1
]
raise
RuntimeError
(
repr
(
exc
))
raise
if
__name__
==
"__main__"
:
pyx_to_dll
(
"dummy.pyx"
)
...
...
pyximport/pyximport.py
View file @
b16f44a4
This diff is collapsed.
Click to expand it.
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