mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
threadable false
This commit is contained in:
parent
85d197e7d7
commit
507ebeeb58
2 changed files with 32 additions and 0 deletions
14
news/hgi.rst
Normal file
14
news/hgi.rst
Normal file
|
@ -0,0 +1,14 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Mercurial (``hg``) will no longer run in a threadable subprocess when
|
||||
it is run in interactive mode.
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:** None
|
||||
|
||||
**Security:** None
|
|
@ -332,6 +332,23 @@ def predict_help_ver(args):
|
|||
return pred
|
||||
|
||||
|
||||
@lazyobject
|
||||
def HG_PREDICTOR_PARSER():
|
||||
p = argparse.ArgumentParser('hg', add_help=False)
|
||||
p.add_argument('command')
|
||||
p.add_argument('-i', '--interactive', action='store_true', default=False,
|
||||
dest='interactive')
|
||||
return p
|
||||
|
||||
|
||||
def predict_hg(args):
|
||||
"""Predict if mercurial is about to be run in interactive mode.
|
||||
If it is interactive, predict False. If it isn't, predict True.
|
||||
"""
|
||||
ns, _ = HG_PREDICTOR_PARSER.parse_known_args(args)
|
||||
return not ns.interactive
|
||||
|
||||
|
||||
def default_threadable_predictors():
|
||||
"""Generates a new defaultdict for known threadable predictors.
|
||||
The default is to predict true.
|
||||
|
@ -348,6 +365,7 @@ def default_threadable_predictors():
|
|||
'emacsclient': predict_false,
|
||||
'fish': predict_shell,
|
||||
'gvim': predict_help_ver,
|
||||
'hg': predict_hg,
|
||||
'htop': predict_help_ver,
|
||||
'ipython': predict_shell,
|
||||
'ksh': predict_shell,
|
||||
|
|
Loading…
Add table
Reference in a new issue