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
b49d9c67
Commit
b49d9c67
authored
Jul 26, 2012
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #138 from yarikoptic/master
improve detection of the extension suffix for cython_inline
parents
bf7981fb
c6ec4f65
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
12 deletions
+23
-12
Cython/Build/Inline.py
Cython/Build/Inline.py
+23
-12
No files found.
Cython/Build/Inline.py
View file @
b49d9c67
...
...
@@ -29,8 +29,6 @@ if sys.version_info[0] < 3:
else
:
to_unicode
=
lambda
x
:
x
_code_cache
=
{}
class
AllSymbols
(
CythonTransform
,
SkipDeclarations
):
def
__init__
(
self
):
...
...
@@ -94,6 +92,16 @@ def safe_type(arg, context=None):
return
'%s.%s'
%
(
base_type
.
__module__
,
base_type
.
__name__
)
return
'object'
def
_get_build_extension
():
dist
=
Distribution
()
# Ensure the build respects distutils configuration by parsing
# the configuration files
config_files
=
dist
.
find_config_files
()
dist
.
parse_config_files
(
config_files
)
build_extension
=
build_ext
(
dist
)
build_extension
.
finalize_options
()
return
build_extension
def
cython_inline
(
code
,
get_type
=
unsafe_type
,
lib_dir
=
os
.
path
.
join
(
get_cython_cache_dir
(),
'inline'
),
...
...
@@ -139,8 +147,13 @@ def cython_inline(code,
key
=
orig_code
,
arg_sigs
,
sys
.
version_info
,
sys
.
executable
,
Cython
.
__version__
module_name
=
"_cython_inline_"
+
hashlib
.
md5
(
str
(
key
).
encode
(
'utf-8'
)).
hexdigest
()
so_ext
=
[
ext
for
ext
,
_
,
mod_type
in
imp
.
get_suffixes
()
if
mod_type
==
imp
.
C_EXTENSION
][
0
]
module_path
=
os
.
path
.
join
(
lib_dir
,
module_name
+
so_ext
)
build_extension
=
None
if
cython_inline
.
so_ext
is
None
:
# Figure out and cache current extension suffix
build_extension
=
_get_build_extension
()
cython_inline
.
so_ext
=
build_extension
.
get_ext_filename
(
''
)
module_path
=
os
.
path
.
join
(
lib_dir
,
module_name
+
cython_inline
.
so_ext
)
if
not
os
.
path
.
exists
(
lib_dir
):
os
.
makedirs
(
lib_dir
)
...
...
@@ -178,23 +191,21 @@ def __invoke(%(params)s):
sources = [pyx_file],
include_dirs = c_include_dirs,
extra_compile_args = cflags)
dist = Distribution()
# Ensure the build respects distutils configuration by parsing
# the configuration files
config_files = dist.find_config_files()
dist.parse_config_files(config_files)
build_extension = build_ext(dist)
build_extension.finalize_options()
if build_extension is None:
build_extension = _get_build_extension()
build_extension.extensions = cythonize([extension], ctx=ctx, quiet=quiet)
build_extension.build_temp = os.path.dirname(pyx_file)
build_extension.build_lib = lib_dir
build_extension.run()
_code_cache[key] = module_name
module = imp.load_dynamic(module_name, module_path)
arg_list = [kwds[arg] for arg in arg_names]
return module.__invoke(*arg_list)
# Cached suffix used by cython_inline above. None should get
# overridden with actual value upon the first cython_inline invocation
cython_inline.so_ext = None
non_space = re.compile('
[
^
]
')
def strip_common_indent(code):
min_indent = None
...
...
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