Skip to content
Snippets Groups Projects
Verified Commit d031560e authored by David Beniamine's avatar David Beniamine
Browse files

remove non ascii char

parent b98233e4
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ MAX_PROC = int(mp.cpu_count()) ...@@ -33,7 +33,7 @@ MAX_PROC = int(mp.cpu_count())
# + If errFileName is not None, all exceptions produced by func are intercepted and gradually logged in errFileName # + If errFileName is not None, all exceptions produced by func are intercepted and gradually logged in errFileName
# + numProc sets the number of process to use # + numProc sets the number of process to use
# + if ordered is true, results are outputed in the same order as tasks # + if ordered is true, results are outputed in the same order as tasks
# + chunksize : chunkszise for imap # + chunksize : chunkszise for imap
# + if debug is set to true, errors are also printed to stderr # + if debug is set to true, errors are also printed to stderr
def parallelRunAndWrite(func, tasks, outFileName, bar=True, errFileName=None, numProc=MAX_PROC, ordered=False, chunksize=1, debug=False): def parallelRunAndWrite(func, tasks, outFileName, bar=True, errFileName=None, numProc=MAX_PROC, ordered=False, chunksize=1, debug=False):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment