Skip to content

Commit cd36329

Browse files
committed
remove some dead Windows+py2 code
1 parent a44f3c0 commit cd36329

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

ipyparallel/cluster/launcher.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,6 @@
6363

6464
ipcontroller_cmd_argv = [sys.executable, "-m", "ipyparallel.controller"]
6565

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-
8266
# -----------------------------------------------------------------------------
8367
# Base launchers and errors
8468
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)