File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 63
63
64
64
ipcontroller_cmd_argv = [sys .executable , "-m" , "ipyparallel.controller" ]
65
65
66
- if WINDOWS and sys .version_info < (3 ,):
67
- # `python -m package` doesn't work on Windows Python 2
68
- # due to weird multiprocessing bugs
69
- # and python -m module puts classes in the `__main__` module,
70
- # so instance checks get confused
71
- ipengine_cmd_argv = [
72
- sys .executable ,
73
- "-c" ,
74
- "from ipyparallel.engine.__main__ import main; main()" ,
75
- ]
76
- ipcontroller_cmd_argv = [
77
- sys .executable ,
78
- "-c" ,
79
- "from ipyparallel.controller.__main__ import main; main()" ,
80
- ]
81
-
82
66
# -----------------------------------------------------------------------------
83
67
# Base launchers and errors
84
68
# -----------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments