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
85173a18
Commit
85173a18
authored
Apr 20, 2011
by
Mark Florisson
Committed by
Vitja Makarov
May 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Python 2 test compatibility
parent
3f130b73
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+1
-1
tests/errors/e_cython_parallel.pyx
tests/errors/e_cython_parallel.pyx
+1
-1
No files found.
Cython/Compiler/Nodes.py
View file @
85173a18
...
@@ -6004,7 +6004,7 @@ class ParallelRangeNode(ParallelStatNode):
...
@@ -6004,7 +6004,7 @@ class ParallelRangeNode(ParallelStatNode):
if
self
.
schedule
not
in
(
None
,
'static'
,
'dynamic'
,
'guided'
,
if
self
.
schedule
not
in
(
None
,
'static'
,
'dynamic'
,
'guided'
,
'runtime'
):
'runtime'
):
error
(
self
.
pos
,
"Invalid schedule argument to prange: %
r
"
%
error
(
self
.
pos
,
"Invalid schedule argument to prange: %
s
"
%
(
self
.
schedule
,))
(
self
.
schedule
,))
for
kw
in
self
.
kwargs
:
for
kw
in
self
.
kwargs
:
...
...
tests/errors/e_cython_parallel.pyx
View file @
85173a18
...
@@ -43,7 +43,7 @@ e_cython_parallel.pyx:6:7: cython.parallel.parallel is not a module
...
@@ -43,7 +43,7 @@ e_cython_parallel.pyx:6:7: cython.parallel.parallel is not a module
e_cython_parallel.pyx:7:0: No such directive: cython.parallel.something
e_cython_parallel.pyx:7:0: No such directive: cython.parallel.something
e_cython_parallel.pyx:13:6: prange() can only be used as part of a for loop
e_cython_parallel.pyx:13:6: prange() can only be used as part of a for loop
e_cython_parallel.pyx:13:6: prange() can only be used without the GIL
e_cython_parallel.pyx:13:6: prange() can only be used without the GIL
e_cython_parallel.pyx:18:19: Invalid schedule argument to prange:
'invalid_schedule'
e_cython_parallel.pyx:18:19: Invalid schedule argument to prange:
invalid_schedule
e_cython_parallel.pyx:21:5: The parallel section may only be used without the GIL
e_cython_parallel.pyx:21:5: The parallel section may only be used without the GIL
e_cython_parallel.pyx:27:10: target may not be a Python object as we don't have the GIL
e_cython_parallel.pyx:27:10: target may not be a Python object as we don't have the GIL
e_cython_parallel.pyx:30:9: Can only iterate over an iteration variable
e_cython_parallel.pyx:30:9: Can only iterate over an iteration variable
...
...
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