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
92b91f9a
Commit
92b91f9a
authored
Aug 11, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
properly support '**' pattern in file selection
parent
1762be1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Cython/Build/Cythonize.py
Cython/Build/Cythonize.py
+3
-3
No files found.
Cython/Build/Cythonize.py
View file @
92b91f9a
...
...
@@ -5,8 +5,8 @@ import sys
import
glob
from
distutils.core
import
setup
from
Cython.Build
import
cythonize
from
Cython.Utils
import
find_root_package_dir
,
is_package_dir
from
Cython.Build
.Dependencies
import
cythonize
,
extended_iglob
from
Cython.Utils
import
is_package_dir
from
Cython.Compiler
import
Options
try
:
...
...
@@ -60,7 +60,7 @@ def find_package_base(path):
def
cython_compile
(
path_pattern
,
options
):
pool
=
None
paths
=
map
(
os
.
path
.
abspath
,
glob
.
iglob
(
path_pattern
))
paths
=
map
(
os
.
path
.
abspath
,
extended_
iglob
(
path_pattern
))
try
:
for
path
in
paths
:
if
options
.
build_inplace
:
...
...
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