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
34a17ea0
Commit
34a17ea0
authored
Dec 11, 2018
by
Charles Pigott
Committed by
GitHub
Dec 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't try to use imap with python3
parent
28251032
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
Cython/Build/Cythonize.py
Cython/Build/Cythonize.py
+4
-1
No files found.
Cython/Build/Cythonize.py
View file @
34a17ea0
...
...
@@ -21,7 +21,10 @@ except ImportError:
class
_FakePool
(
object
):
def
map_async
(
self
,
func
,
args
):
from
itertools
import
imap
try
:
from
itertools
import
imap
except
ImportError
:
imap
=
map
for
_
in
imap
(
func
,
args
):
pass
...
...
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