Commit 597358c0 authored by Stefan Behnel's avatar Stefan Behnel

Add missing keyword arguments to fake prange() function in Shadow.py.

parent 8bb6d603
......@@ -455,7 +455,7 @@ class CythonDotParallel(object):
def parallel(self, num_threads=None):
return nogil
def prange(self, start=0, stop=None, step=1, schedule=None, nogil=False):
def prange(self, start=0, stop=None, step=1, nogil=False, schedule=None, chunksize=None, num_threads=None):
if stop is None:
stop = start
start = 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment