diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-10-14 22:10:31 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-10-14 22:10:31 +0200 |
commit | aa978ab24631410126f7391e96cb643aa61c4b20 (patch) | |
tree | 411725e43c3d70ef3397c4301df0be70da3be5bb /kcc.py | |
parent | Merge pull request #250 from ciromattia/dev (diff) | |
download | kcc-aa978ab24631410126f7391e96cb643aa61c4b20.tar.gz kcc-aa978ab24631410126f7391e96cb643aa61c4b20.tar.bz2 kcc-aa978ab24631410126f7391e96cb643aa61c4b20.zip |
Disabled old multiprocessing hack
Diffstat (limited to 'kcc.py')
-rwxr-xr-x | kcc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kcc.py b/kcc.py index afd4796..618c2cb 100755 --- a/kcc.py +++ b/kcc.py @@ -34,6 +34,7 @@ if sys.platform.startswith('darwin'): else: os.environ['PATH'] = os.path.dirname(os.path.abspath(__file__)) + '/other/osx/:' + os.environ['PATH'] elif sys.platform.startswith('win'): + ''' import multiprocessing.popen_spawn_win32 as forking class _Popen(forking.Popen): @@ -50,7 +51,7 @@ elif sys.platform.startswith('win'): else: os.putenv('_MEIPASS2', '') forking.Popen = _Popen - + ''' if getattr(sys, 'frozen', False): os.chdir(os.path.dirname(os.path.abspath(sys.executable))) else: |