##// END OF EJS Templates
Merge pull request #4720 from minrk/ssh-no-mux...
Merge pull request #4720 from minrk/ssh-no-mux never use ssh multiplexer in tunnels `ssh -f` is [broken in OpenSSH](https://bugzilla.mindrot.org/show_bug.cgi?id=1948) when a ControlMaster multiplexed connection is used. `-S none` disables the multiplexed connection. closes #4717

File last commit:

r13347:54891794
r13980:fd4292b6 merge
Show More
tokenize2.py
9 lines | 160 B | text/x-python | PythonLexer
"""Load our patched versions of tokenize.
"""
import sys
if sys.version_info[0] >= 3:
from ._tokenize_py3 import *
else:
from ._tokenize_py2 import *