##// END OF EJS Templates
Fix bytes regex for Python 3....
Thomas Kluyver -
Show More
@@ -272,5 +272,5 b' class BaseParallelApplication(BaseIPythonApplication):'
272 " Making the likely assumption that it is."%pid
272 " Making the likely assumption that it is."%pid
273 )
273 )
274 return True
274 return True
275 pids = list(map(int, re.findall(r'^\W*\d+', output, re.MULTILINE)))
275 pids = list(map(int, re.findall(br'^\W*\d+', output, re.MULTILINE)))
276 return pid in pids
276 return pid in pids
General Comments 0
You need to be logged in to leave comments. Login now