summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorunknown <numaanzaheerahmed@yahoo.com>2020-03-18 16:18:18 +0530
committerunknown <numaanzaheerahmed@yahoo.com>2020-03-18 17:15:40 +0530
commitd78a78bc815397b75d49fec7abf714e1c7f99421 (patch)
treeb410a4a3f5ee1a36eb0f727bafe73a839328936f /methods.py
parentfaca5bafe85dbafecb95b926ebca4c131e01ce26 (diff)
downloadredot-engine-d78a78bc815397b75d49fec7abf714e1c7f99421.tar.gz
Remove the dead function win32_spawn from methods.py.
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/methods.py b/methods.py
index 28c6d0c097..56c495468d 100644
--- a/methods.py
+++ b/methods.py
@@ -193,25 +193,6 @@ void unregister_module_types() {
return module_list
-def win32_spawn(sh, escape, cmd, args, env):
- import subprocess
- newargs = ' '.join(args[1:])
- cmdline = cmd + " " + newargs
- startupinfo = subprocess.STARTUPINFO()
- for e in env:
- if type(env[e]) != type(""):
- env[e] = str(env[e])
- proc = subprocess.Popen(cmdline, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
- stderr=subprocess.PIPE, startupinfo=startupinfo, shell=False, env=env)
- _, err = proc.communicate()
- rv = proc.wait()
- if rv:
- print("=====")
- print(err)
- print("=====")
- return rv
-
-
def disable_module(self):
self.disabled_modules.append(self.current_module)