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
Boxiang Sun
cython
Commits
e9bd6af6
Commit
e9bd6af6
authored
Aug 02, 2014
by
scoder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #228 from tecki/master
Use all distutils config files in pyximport
parents
f486ed52
d566d94b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
pyximport/pyxbuild.py
pyximport/pyxbuild.py
+1
-7
No files found.
pyximport/pyxbuild.py
View file @
e9bd6af6
...
...
@@ -79,15 +79,9 @@ def pyx_to_dll(filename, ext = None, force_rebuild = 0,
build
=
dist
.
get_command_obj
(
'build'
)
build
.
build_base
=
pyxbuild_dir
config_files
=
dist
.
find_config_files
()
try
:
config_files
.
remove
(
'setup.cfg'
)
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
:
...
...
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