##// END OF EJS Templates
tests: synchronize `simplestorerevisiondelta` with modern `irevisiondelta`...
tests: synchronize `simplestorerevisiondelta` with modern `irevisiondelta` I noticed these fields had been missing when I pasted the body of `revlog.revlogrevisiondelta` here to pick up the correct type hints in the previous commit. Not sure how this got out of sync, and there's probably not a way to enforce this with Protocol either, unless the base class uses `@abstractproperty` or something (which introduced its own trickiness for the subclasses IIRC).

File last commit:

r52756:f4733654 default
r53368:4a332b23 default
Show More
txnutil.py
33 lines | 978 B | text/x-python | PythonLexer
# txnutil.py - transaction related utilities
#
# Copyright FUJIWARA Katsunori <foozy@lares.dti.ne.jp> and others
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import annotations
from . import encoding
def mayhavepending(root):
"""return whether 'root' may have pending changes, which are
visible to this process.
"""
return root == encoding.environ.get(b'HG_PENDING')
def trypending(root, vfs, filename, **kwargs):
"""Open file to be read according to HG_PENDING environment variable
This opens '.pending' of specified 'filename' only when HG_PENDING
is equal to 'root'.
This returns '(fp, is_pending_opened)' tuple.
"""
if mayhavepending(root):
try:
return (vfs(b'%s.pending' % filename, **kwargs), True)
except FileNotFoundError:
pass
return (vfs(filename, **kwargs), False)