parent: Add hack for OS X /usr/bin/python

It's a magical switcher that needs argv[0], which we don't provide.
wip-fakessh-exit-status
David Wilson 6 years ago
parent 88508fcb61
commit 0ef23d8644

@ -26,17 +26,18 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import re
import getpass
import inspect
import logging
import os
import termios
import signal
import re
import select
import getpass
import time
import signal
import socket
import inspect
import sys
import termios
import textwrap
import time
import zlib
import mitogen.core
@ -289,6 +290,11 @@ class Stream(mitogen.core.Stream):
super(Stream, self).construct(**kwargs)
if python_path:
self.python_path = python_path
if sys.platform == 'darwin' and self.python_path == '/usr/bin/python':
# OS X installs a craptacular argv0-introspecting Python version
# switcher as /usr/bin/python. Override attempts to call it with an
# explicit call to python2.7
self.python_path = '/usr/bin/python2.7'
if connect_timeout:
self.connect_timeout = connect_timeout
if remote_name is None:

Loading…
Cancel
Save