##// END OF EJS Templates
match: match explicit file using a set...
match: match explicit file using a set The matcher as all the logic to do quick comparison against explicit patterns, however the pattern matcher was shadowing the code using that set and used the compiled regex pattern in all cases, which is quite slow. We restore the usage of the set based matching to boost performance. Building the regexp is still consuming a large amount of time (actually, the majority of the time), which is still silly. Maybe using re2 would help that, but this is a quest for another adventure. Another path to improve this is to have a pattern type dedicated to match the exact path to a file only (not a directory). This pattern could use the set matching only and be skipped in the regex all together. Benchmarks ========== In the following benchmark we are comparing the `hg cat` and `hg files` run time when matching against all files in the repository. They are run: - without the rust extensions - with the standard python engine (so without re2) Performance improvement in this series -------------------------------------- ###### hg files ############################################################### ### mercurial-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 0.230092 seconds prev-changeset: 0.230069 seconds this-changeset: 0.211425 seconds (-8.36%) ### mercurial-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 0.234235 seconds prev-changeset: 0.231165 seconds (-1.38%) this-changeset: 0.212300 seconds (-9.43%) ### pypy-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 0.613567 seconds prev-changeset: 0.616799 seconds this-changeset: 0.510852 seconds (-16.82%) ### pypy-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 0.801880 seconds prev-changeset: 0.616393 seconds (-23.22%) this-changeset: 0.511903 seconds (-36.23%) ### netbeans-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 21.541828 seconds prev-changeset: 21.586773 seconds this-changeset: 13.648347 seconds (-36.76%) ### netbeans-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 172.759857 seconds prev-changeset: 21.908197 seconds (-87.32%) this-changeset: 13.945110 seconds (-91.93%) ### mozilla-central-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 62.474221 seconds prev-changeset: 61.279490 seconds (-1.22%) this-changeset: 29.529469 seconds (-52.40%) ### mozilla-central-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 1364.180218 seconds prev-changeset: 62.473549 seconds (-95.40%) this-changeset: 30.625249 seconds (-97.75%) ###### hg cat ################################################################# ### mercurial-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 0.764407 seconds prev-changeset: 0.763883 seconds this-changeset: 0.737326 seconds (-3.68%) ### mercurial-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 0.768924 seconds prev-changeset: 0.765848 seconds this-changeset: 0.174d0b seconds (-4.44%) ### pypy-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 2.065220 seconds prev-changeset: 2.070498 seconds this-changeset: 1.939482 seconds (-6.08%) ### pypy-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 2.276388 seconds prev-changeset: 2.069197 seconds (-9.15%) this-changeset: 1.931746 seconds (-15.19%) ### netbeans-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 40.967983 seconds prev-changeset: 41.392423 seconds this-changeset: 32.181681 seconds (-22.20%) ### netbeans-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 216.388709 seconds prev-changeset: 41.648689 seconds (-80.88%) this-changeset: 32.580817 seconds (-85.04%) ### mozilla-central-2018-08-01-zstd-sparse-revlog ### sorted base-changeset: 105.228510 seconds prev-changeset: 103.315670 seconds (-1.23%) this-changeset: 69.416118 seconds (-33.64%) ### mozilla-central-2018-08-01-zstd-sparse-revlog ### shuffled base-changeset: 1448.722784 seconds prev-changeset: 104.369358 seconds (-92.80%) this-changeset: 70.554789 seconds (-95.13%) Different way to list the same data with this revision ------------------------------------------------------ ###### hg files ############################################################### ### mercurial-2018-08-01-zstd-sparse-revlog root: 0.119182 seconds glob: 0.120697 seconds (+1.27%) sorted: 0.211425 seconds (+77.40%) shuffled: 0.212300 seconds (+78.13%) ### pypy-2018-08-01-zstd-sparse-revlog root: 0.121986 seconds glob: 0.124822 seconds (+2.32%) sorted: 0.510852 seconds (+318.78%) shuffled: 0.511903 seconds (+319.64%) ### netbeans-2018-08-01-zstd-sparse-revlog root: 0.173984 seconds glob: 0.227203 seconds (+30.59%) sorted: 13.648347 seconds (+7744.59%) shuffled: 13.945110 seconds (+7915.16%) ### mozilla-central-2018-08-01-zstd-sparse-revlog root: 0.366463 seconds glob: 0.491030 seconds (+33.99%) sorted: 29.529469 seconds (+7957.96%) shuffled: 30.625249 seconds (+8256.97%) ###### hg cat ################################################################# ### mercurial-2018-08-01-zstd-sparse-revlog glob: 0.647471 seconds root: 0.643120 seconds shuffled: 0.174d0b seconds (+13.92%) sorted: 0.737326 seconds (+13.88%) ### mozilla-central-2018-08-01-zstd-sparse-revlog glob: 40.596983 seconds root: 40.129136 seconds shuffled: 70.554789 seconds (+73.79%) sorted: 69.416118 seconds (+70.99%) ### netbeans-2018-08-01-zstd-sparse-revlog glob: 18.777924 seconds root: 18.613905 seconds shuffled: 32.580817 seconds (+73.51%) sorted: 32.181681 seconds (+71.38%) ### pypy-2018-08-01-zstd-sparse-revlog glob: 1.555319 seconds root: 1.536534 seconds shuffled: 1.931746 seconds (+24.20%) sorted: 1.939482 seconds (+24.70%)

File last commit:

r50724:8ced4ca3 stable
r51286:81c7d04f stable
Show More
state.py
385 lines | 12.0 KiB | text/x-python | PythonLexer
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 # state.py - writing and reading state files in Mercurial
#
# Copyright 2018 Pulkit Goyal <pulkitmgoyal@gmail.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
"""
This file contains class to wrap the state for commands and other
related logic.
All the data related to the command state is stored as dictionary in the object.
The class has methods using which the data can be stored to disk in a file under
.hg/ directory.
Augie Fackler
state: update comment about use of CBOR...
r41171 We store the data on disk in cbor, for which we use the CBOR format to encode
the data.
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 """
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 import contextlib
Taapas Agrawal
states: moved cmdutil.unfinishedstates to state.py...
r42729 from .i18n import _
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 from . import (
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 error,
Yuya Nishihara
typing: consolidate "if not globals():" trick...
r44212 pycompat,
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 util,
)
Augie Fackler
formatting: blacken the codebase...
r43346 from .utils import cborutil
Yuya Nishihara
typing: consolidate "if not globals():" trick...
r44212 if pycompat.TYPE_CHECKING:
Augie Fackler
state: add a pytype annotation...
r44101 from typing import (
Any,
Dict,
)
for t in (Any, Dict):
assert t
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
Gregory Szorc
py3: use class X: instead of class X(object):...
r49801 class cmdstate:
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 """a wrapper class to store the state of commands like `rebase`, `graft`,
`histedit`, `shelve` etc. Extensions can also use this to write state files.
All the data for the state is stored in the form of key-value pairs in a
dictionary.
The class object can write all the data to a file in .hg/ directory and
can populate the object data reading that file.
Uses cbor to serialize and deserialize data while writing and reading from
disk.
"""
Pulkit Goyal
state: removing remaining instances of opts class variable...
r38162 def __init__(self, repo, fname):
Augie Fackler
formating: upgrade to black 20.8b1...
r46554 """repo is the repo object
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 fname is the file name in which data should be stored in .hg directory
"""
self._repo = repo
self.fname = fname
Pulkit Goyal
state: don't have a dict like interface for cmdstate class...
r38116 def read(self):
Augie Fackler
state: add a pytype annotation...
r44101 # type: () -> Dict[bytes, Any]
Pulkit Goyal
state: don't have a dict like interface for cmdstate class...
r38116 """read the existing state file and return a dict of data stored"""
return self._read()
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 def save(self, version, data):
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115 """write all the state data stored to .hg/<filename> file
we use third-party library cbor to serialize data to write in the file.
"""
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 if not isinstance(version, int):
Augie Fackler
formatting: blacken the codebase...
r43346 raise error.ProgrammingError(
Martin von Zweigbergk
cleanup: join string literals that are already on one line...
r43387 b"version of state file should be an integer"
Augie Fackler
formatting: blacken the codebase...
r43346 )
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 with self._repo.vfs(self.fname, b'wb', atomictemp=True) as fp:
fp.write(b'%d\n' % version)
Gregory Szorc
state: use our CBOR module...
r39482 for chunk in cborutil.streamencode(data):
fp.write(chunk)
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
def _read(self):
"""reads the state file and returns a dictionary which contain
data in the same format as it was before storing"""
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 with self._repo.vfs(self.fname, b'rb') as fp:
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 try:
Pulkit Goyal
state: temporary silence pyflakes warning by removing variable assignment...
r38141 int(fp.readline())
Pulkit Goyal
state: write the version number in plain text on top of state files...
r38118 except ValueError:
Augie Fackler
formatting: blacken the codebase...
r43346 raise error.CorruptedState(
Martin von Zweigbergk
cleanup: join string literals that are already on one line...
r43387 b"unknown version of state file found"
Augie Fackler
formatting: blacken the codebase...
r43346 )
Gregory Szorc
state: use our CBOR module...
r39482
return cborutil.decodeall(fp.read())[0]
Pulkit Goyal
state: import the file to write state files from evolve extension...
r38115
def delete(self):
"""drop the state file if exists"""
util.unlinkpath(self._repo.vfs.join(self.fname), ignoremissing=True)
def exists(self):
"""check whether the state file exists or not"""
return self._repo.vfs.exists(self.fname)
Taapas Agrawal
states: moved cmdutil.unfinishedstates to state.py...
r42729
Augie Fackler
formatting: blacken the codebase...
r43346
Gregory Szorc
py3: use class X: instead of class X(object):...
r49801 class _statecheck:
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 """a utility class that deals with multistep operations like graft,
Augie Fackler
formating: upgrade to black 20.8b1...
r46554 histedit, bisect, update etc and check whether such commands
are in an unfinished conditition or not and return appropriate message
and hint.
It also has the ability to register and determine the states of any new
multistep operation or multistep command extension.
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 """
Augie Fackler
formatting: blacken the codebase...
r43346 def __init__(
self,
opname,
fname,
clearable,
allowcommit,
reportonly,
continueflag,
stopflag,
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 childopnames,
Augie Fackler
formatting: blacken the codebase...
r43346 cmdmsg,
cmdhint,
statushint,
abortfunc,
continuefunc,
):
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 self._opname = opname
self._fname = fname
self._clearable = clearable
self._allowcommit = allowcommit
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 self._reportonly = reportonly
self._continueflag = continueflag
self._stopflag = stopflag
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 self._childopnames = childopnames
self._delegating = False
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 self._cmdmsg = cmdmsg
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 self._cmdhint = cmdhint
Taapas Agrawal
statecheck: added support for STATES...
r42732 self._statushint = statushint
Taapas Agrawal
abort: added logic for of hg abort...
r42784 self.abortfunc = abortfunc
Taapas Agrawal
continue: added logic for hg continue...
r42831 self.continuefunc = continuefunc
Taapas Agrawal
statecheck: added support for STATES...
r42732
def statusmsg(self):
"""returns the hint message corresponding to the command for
hg status --verbose
"""
if not self._statushint:
Augie Fackler
formatting: blacken the codebase...
r43346 hint = _(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'To continue: hg %s --continue\n'
b'To abort: hg %s --abort'
Augie Fackler
formatting: blacken the codebase...
r43346 ) % (self._opname, self._opname)
Taapas Agrawal
statecheck: added support for STATES...
r42732 if self._stopflag:
Augie Fackler
formatting: blacken the codebase...
r43346 hint = hint + (
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 _(b'\nTo stop: hg %s --stop') % (self._opname)
Augie Fackler
formatting: blacken the codebase...
r43346 )
Taapas Agrawal
statecheck: added support for STATES...
r42732 return hint
return self._statushint
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730
def hint(self):
Taapas Agrawal
statecheck: added support for STATES...
r42732 """returns the hint message corresponding to an interrupted
operation
"""
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 if not self._cmdhint:
Kyle Lippincott
morestatus: mention --stop even if not using --verbose...
r45774 if not self._stopflag:
return _(b"use 'hg %s --continue' or 'hg %s --abort'") % (
self._opname,
self._opname,
)
else:
Martin von Zweigbergk
cleanup: fix bad formatting of state.py from D8811...
r45804 return _(
b"use 'hg %s --continue', 'hg %s --abort', "
b"or 'hg %s --stop'"
Augie Fackler
formating: upgrade to black 20.8b1...
r46554 ) % (
self._opname,
self._opname,
self._opname,
)
Kyle Lippincott
morestatus: mention --stop even if not using --verbose...
r45774
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 return self._cmdhint
def msg(self):
"""returns the status message corresponding to the command"""
if not self._cmdmsg:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 return _(b'%s in progress') % (self._opname)
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 return self._cmdmsg
Taapas Agrawal
statecheck: added support for cmdutil.afterresolvedstates...
r42733 def continuemsg(self):
Kyle Lippincott
black: make codebase compatible with black v21.4b2 and v20.8b1...
r47856 """returns appropriate continue message corresponding to command"""
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 return _(b'hg %s --continue') % (self._opname)
Taapas Agrawal
statecheck: added support for cmdutil.afterresolvedstates...
r42733
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 def isunfinished(self, repo):
Taapas Agrawal
statecheck: added support for STATES...
r42732 """determines whether a multi-step operation is in progress
or not
"""
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if self._opname == b'merge':
Taapas Agrawal
statecheck: added support for STATES...
r42732 return len(repo[None].parents()) > 1
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 elif self._delegating:
return False
Taapas Agrawal
statecheck: added support for STATES...
r42732 else:
return repo.vfs.exists(self._fname)
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730
Augie Fackler
formatting: blacken the codebase...
r43346
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 # A list of statecheck objects for multistep operations like graft.
_unfinishedstates = []
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 _unfinishedstatesbyname = {}
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730
Augie Fackler
formatting: blacken the codebase...
r43346
def addunfinished(
opname,
fname,
clearable=False,
allowcommit=False,
reportonly=False,
continueflag=False,
stopflag=False,
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 childopnames=None,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 cmdmsg=b"",
cmdhint=b"",
statushint=b"",
Augie Fackler
formatting: blacken the codebase...
r43346 abortfunc=None,
continuefunc=None,
):
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 """this registers a new command or operation to unfinishedstates
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 opname is the name the command or operation
fname is the file name in which data should be stored in .hg directory.
It is None for merge command.
clearable boolean determines whether or not interrupted states can be
cleared by running `hg update -C .` which in turn deletes the
state file.
allowcommit boolean decides whether commit is allowed during interrupted
state or not.
reportonly flag is used for operations like bisect where we just
need to detect the operation using 'hg status --verbose'
continueflag is a boolean determines whether or not a command supports
`--continue` option or not.
stopflag is a boolean that determines whether or not a command supports
--stop flag
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 childopnames is a list of other opnames this op uses as sub-steps of its
own execution. They must already be added.
Taapas Agrawal
statecheck: shifted defaults to addunfinished()...
r42734 cmdmsg is used to pass a different status message in case standard
message of the format "abort: cmdname in progress" is not desired.
cmdhint is used to pass a different hint message in case standard
message of the format "To continue: hg cmdname --continue
To abort: hg cmdname --abort" is not desired.
statushint is used to pass a different status message in case standard
message of the format ('To continue: hg cmdname --continue'
'To abort: hg cmdname --abort') is not desired
Taapas Agrawal
abort: added logic for of hg abort...
r42784 abortfunc stores the function required to abort an unfinished state.
Taapas Agrawal
continue: added logic for hg continue...
r42831 continuefunc stores the function required to finish an interrupted
operation.
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 """
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 childopnames = childopnames or []
Augie Fackler
formatting: blacken the codebase...
r43346 statecheckobj = _statecheck(
opname,
fname,
clearable,
allowcommit,
reportonly,
continueflag,
stopflag,
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 childopnames,
Augie Fackler
formatting: blacken the codebase...
r43346 cmdmsg,
cmdhint,
statushint,
abortfunc,
continuefunc,
)
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if opname == b'merge':
Taapas Agrawal
statecheck: added support for STATES...
r42732 _unfinishedstates.append(statecheckobj)
else:
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 # This check enforces that for any op 'foo' which depends on op 'bar',
# 'foo' comes before 'bar' in _unfinishedstates. This ensures that
# getrepostate() always returns the most specific applicable answer.
for childopname in childopnames:
if childopname not in _unfinishedstatesbyname:
raise error.ProgrammingError(
_(b'op %s depends on unknown op %s') % (opname, childopname)
)
Taapas Agrawal
statecheck: added support for STATES...
r42732 _unfinishedstates.insert(0, statecheckobj)
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730
Daniel Ploch
state: support validated declaration of nested unfinished ops...
r45731 if opname in _unfinishedstatesbyname:
raise error.ProgrammingError(_(b'op %s registered twice') % opname)
_unfinishedstatesbyname[opname] = statecheckobj
def _getparentandchild(opname, childopname):
p = _unfinishedstatesbyname.get(opname, None)
if not p:
raise error.ProgrammingError(_(b'unknown op %s') % opname)
if childopname not in p._childopnames:
raise error.ProgrammingError(
_(b'op %s does not delegate to %s') % (opname, childopname)
)
c = _unfinishedstatesbyname[childopname]
return p, c
@contextlib.contextmanager
def delegating(repo, opname, childopname):
"""context wrapper for delegations from opname to childopname.
requires that childopname was specified when opname was registered.
Usage:
def my_command_foo_that_uses_rebase(...):
...
with state.delegating(repo, 'foo', 'rebase'):
_run_rebase(...)
...
"""
p, c = _getparentandchild(opname, childopname)
if p._delegating:
raise error.ProgrammingError(
_(b'cannot delegate from op %s recursively') % opname
)
p._delegating = True
try:
yield
except error.ConflictResolutionRequired as e:
# Rewrite conflict resolution advice for the parent opname.
if e.opname == childopname:
raise error.ConflictResolutionRequired(opname)
raise e
finally:
p._delegating = False
def ischildunfinished(repo, opname, childopname):
"""Returns true if both opname and childopname are unfinished."""
p, c = _getparentandchild(opname, childopname)
return (p._delegating or p.isunfinished(repo)) and c.isunfinished(repo)
def continuechild(ui, repo, opname, childopname):
"""Checks that childopname is in progress, and continues it."""
p, c = _getparentandchild(opname, childopname)
if not ischildunfinished(repo, opname, childopname):
raise error.ProgrammingError(
_(b'child op %s of parent %s is not unfinished')
% (childopname, opname)
)
if not c.continuefunc:
raise error.ProgrammingError(
_(b'op %s has no continue function') % childopname
)
return c.continuefunc(ui, repo)
Augie Fackler
formatting: blacken the codebase...
r43346
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 addunfinished(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'update',
fname=b'updatestate',
Augie Fackler
formatting: blacken the codebase...
r43346 clearable=True,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 cmdmsg=_(b'last update was interrupted'),
cmdhint=_(b"use 'hg update' to get a consistent checkout"),
statushint=_(b"To continue: hg update ."),
Taapas Agrawal
state: created new class statecheck to handle unfinishedstates...
r42730 )
Taapas Agrawal
statecheck: added support for STATES...
r42732 addunfinished(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'bisect',
fname=b'bisect.state',
Augie Fackler
formatting: blacken the codebase...
r43346 allowcommit=True,
reportonly=True,
av6
bisect: correct message about aborting an in-progress bisect (issue6527)...
r50724 cmdhint=_(b"use 'hg bisect --reset'"),
Augie Fackler
formatting: blacken the codebase...
r43346 statushint=_(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'To mark the changeset good: hg bisect --good\n'
b'To mark the changeset bad: hg bisect --bad\n'
b'To abort: hg bisect --reset\n'
Augie Fackler
formatting: blacken the codebase...
r43346 ),
Taapas Agrawal
statecheck: added support for STATES...
r42732 )
Taapas Agrawal
state: moved cmdutil.STATES and utilities to state.py...
r42731
Augie Fackler
formatting: blacken the codebase...
r43346
Taapas Agrawal
state: moved cmdutil.STATES and utilities to state.py...
r42731 def getrepostate(repo):
# experimental config: commands.status.skipstates
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 skip = set(repo.ui.configlist(b'commands', b'status.skipstates'))
Taapas Agrawal
statecheck: added support for STATES...
r42732 for state in _unfinishedstates:
if state._opname in skip:
Taapas Agrawal
state: moved cmdutil.STATES and utilities to state.py...
r42731 continue
Taapas Agrawal
statecheck: added support for STATES...
r42732 if state.isunfinished(repo):
return (state._opname, state.statusmsg())