No python files are processed by Meson anymore

* Linters can be run sooner (before install)
* Moved some constants in the config file
* Added a new keyword in the config syntax: "option"
* Better messages when an error occurs while parsing the config
This commit is contained in:
Romain Failliot 2021-11-27 21:16:35 -05:00
parent d261836a7f
commit 70b1bdbb9f
16 changed files with 151 additions and 75 deletions

View File

@ -1,5 +1,7 @@
# /etc/diffuserc: System-wide initialisation file for Diffuse # System-wide initialization file for Diffuse
#
# Copyright (C) 2006-2009 Derrick Moser <derrick_moser@yahoo.com> option log_print_output @LOG_PRINT_OUTPUT@
option log_print_stack @LOG_PRINT_STACK@
option use_flatpak @USE_FLATPAK@
import @PKGDATADIR@/syntax/*.syntax import @PKGDATADIR@/syntax/*.syntax

View File

@ -33,6 +33,9 @@ endif
# Diffuse config file # Diffuse config file
conf = configuration_data() conf = configuration_data()
conf.set('LOG_PRINT_OUTPUT', get_option('log_print_output'))
conf.set('LOG_PRINT_STACK', get_option('log_print_stack'))
conf.set('USE_FLATPAK', get_option('use_flatpak'))
conf.set('PKGDATADIR', pkgdatadir) conf.set('PKGDATADIR', pkgdatadir)
configure_file( configure_file(

View File

@ -17,14 +17,12 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from gettext import gettext as _
APP_NAME = 'Diffuse' APP_NAME = 'Diffuse'
VERSION = '@VERSION@'
COPYRIGHT = '''{copyright} © 2006-2019 Derrick Moser COPYRIGHT = '''{copyright} © 2006-2019 Derrick Moser
{copyright} © 2015-2021 Romain Failliot'''.format(copyright=_("Copyright")) # type: ignore {copyright} © 2015-2021 Romain Failliot'''.format(copyright=_("Copyright"))
WEBSITE = 'https://mightycreak.github.io/diffuse/' WEBSITE = 'https://mightycreak.github.io/diffuse/'
SYSCONFIGDIR = '@SYSCONFIGDIR@' # Constants are set in main()
VERSION = '0.0.0'
LOG_PRINT_OUTPUT = @LOG_PRINT_OUTPUT@
LOG_PRINT_STACK = @LOG_PRINT_STACK@
USE_FLATPAK = @USE_FLATPAK@

View File

@ -19,6 +19,8 @@
import os import os
from gettext import gettext as _
from diffuse import constants from diffuse import constants
from diffuse import utils from diffuse import utils

View File

@ -22,9 +22,16 @@
import sys import sys
import gettext import gettext
sys.path.insert(1, '@PKGDATADIR@') VERSION = '@VERSION@'
gettext.install('diffuse', '@LOCALEDIR@') PKGDATADIR = '@PKGDATADIR@'
LOCALEDIR = '@LOCALEDIR@'
SYSCONFIGDIR = '@SYSCONFIGDIR@'
sys.path.insert(1, PKGDATADIR)
gettext.bindtextdomain('diffuse', localedir=LOCALEDIR)
gettext.textdomain('diffuse')
if __name__ == '__main__': if __name__ == '__main__':
from diffuse import main from diffuse import main
sys.exit(main.main()) sys.exit(main.main(VERSION, SYSCONFIGDIR))

View File

@ -25,6 +25,7 @@ import shlex
import stat import stat
import webbrowser import webbrowser
from gettext import gettext as _
from urllib.parse import urlparse from urllib.parse import urlparse
from diffuse import constants from diffuse import constants
@ -958,7 +959,7 @@ class Diffuse(Gtk.Window):
self.int_state['window_width'] = event.width self.int_state['window_width'] = event.width
self.int_state['window_height'] = event.height self.int_state['window_height'] = event.height
# record the window's maximised state # record the window's maximized state
def window_state_cb(self, window, event): def window_state_cb(self, window, event):
self.bool_state['window_maximized'] = ( self.bool_state['window_maximized'] = (
(event.new_window_state & Gdk.WindowState.MAXIMIZED) != 0 (event.new_window_state & Gdk.WindowState.MAXIMIZED) != 0
@ -1309,7 +1310,7 @@ class Diffuse(Gtk.Window):
new_items = [] new_items = []
for item in items: for item in items:
name, data = item name, data = item
# get full path to an existing ancessor directory # get full path to an existing ancestor directory
dn = os.path.abspath(name) dn = os.path.abspath(name)
while not os.path.isdir(dn): while not os.path.isdir(dn):
dn, old_dn = os.path.dirname(dn), dn dn, old_dn = os.path.dirname(dn), dn
@ -1614,7 +1615,7 @@ class Diffuse(Gtk.Window):
help_url = None help_url = None
if utils.isWindows(): if utils.isWindows():
# help documentation is distributed as local HTML files # help documentation is distributed as local HTML files
# search for localised manual first # search for localized manual first
parts = ['manual'] parts = ['manual']
if utils.lang is not None: if utils.lang is not None:
parts = ['manual'] parts = ['manual']
@ -1637,7 +1638,7 @@ class Diffuse(Gtk.Window):
browser = fp browser = fp
break break
if browser is not None: if browser is not None:
# find localised help file # find localized help file
if utils.lang is None: if utils.lang is None:
parts = [] parts = []
else: else:
@ -1661,7 +1662,7 @@ class Diffuse(Gtk.Window):
if help_url is None: if help_url is None:
# no local help file is available, show on-line help # no local help file is available, show on-line help
help_url = constants.WEBSITE + 'manual.html' help_url = constants.WEBSITE + 'manual.html'
# ask for localised manual # ask for localized manual
if utils.lang is not None: if utils.lang is not None:
help_url += '?lang=' + utils.lang help_url += '?lang=' + utils.lang
# use a web browser to display the help documentation # use a web browser to display the help documentation
@ -1752,13 +1753,15 @@ GObject.signal_new('save', Diffuse.FileDiffViewer.PaneHeader, GObject.SignalFlag
GObject.signal_new('save-as', Diffuse.FileDiffViewer.PaneHeader, GObject.SignalFlags.RUN_LAST, GObject.TYPE_NONE, ()) # noqa: E501 GObject.signal_new('save-as', Diffuse.FileDiffViewer.PaneHeader, GObject.SignalFlags.RUN_LAST, GObject.TYPE_NONE, ()) # noqa: E501
def main(): def main(version, sysconfigdir):
# app = Application() # app = Application()
# return app.run(sys.argv) # return app.run(sys.argv)
args = sys.argv args = sys.argv
argc = len(args) argc = len(args)
constants.VERSION = version
if argc == 2 and args[1] in ['-v', '--version']: if argc == 2 and args[1] in ['-v', '--version']:
print('%s %s\n%s' % (constants.APP_NAME, constants.VERSION, constants.COPYRIGHT)) print('%s %s\n%s' % (constants.APP_NAME, constants.VERSION, constants.COPYRIGHT))
return 0 return 0
@ -1828,25 +1831,23 @@ Display Options:
rc_files.append(args[i]) rc_files.append(args[i])
i += 1 i += 1
else: else:
# parse system wide then personal initialisation files # parse system wide then personal initialization files
if utils.isWindows(): if utils.isWindows():
rc_file = os.path.join(utils.bin_dir, 'diffuserc') rc_file = os.path.join(utils.bin_dir, 'diffuserc')
else: else:
rc_file = os.path.join(utils.bin_dir, f'{constants.SYSCONFIGDIR}/diffuserc') rc_file = os.path.join(utils.bin_dir, f'{sysconfigdir}/diffuserc')
for rc_file in rc_file, os.path.join(rc_dir, 'diffuserc'): for rc_file in rc_file, os.path.join(rc_dir, 'diffuserc'):
if os.path.isfile(rc_file): if os.path.isfile(rc_file):
rc_files.append(rc_file) rc_files.append(rc_file)
for rc_file in rc_files: for rc_file in rc_files:
# convert to absolute path so the location of any processing errors are # convert to absolute path so the location of any processing errors are
# reported with normalised file names # reported with normalized file names
rc_file = os.path.abspath(rc_file) rc_file = os.path.abspath(rc_file)
try: try:
# diffuse.theResources.parse(rc_file) # Modularization
theResources.parse(rc_file) theResources.parse(rc_file)
except IOError: except IOError:
utils.logError(_('Error reading %s.') % (rc_file, )) utils.logError(_('Error reading %s.') % (rc_file, ))
# diff = diffuse.Diffuse(rc_dir) # Modularization
diff = Diffuse(rc_dir) diff = Diffuse(rc_dir)
# load state # load state

View File

@ -5,8 +5,10 @@ python = import('python')
conf = configuration_data() conf = configuration_data()
conf.set('PYTHON', python.find_installation('python3').path()) conf.set('PYTHON', python.find_installation('python3').path())
conf.set('VERSION', meson.project_version())
conf.set('PKGDATADIR', pkgdatadir) conf.set('PKGDATADIR', pkgdatadir)
conf.set('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) conf.set('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
conf.set('SYSCONFIGDIR', join_paths(get_option('prefix'), get_option('sysconfdir')))
configure_file( configure_file(
input: 'diffuse.in', input: 'diffuse.in',
@ -16,23 +18,9 @@ configure_file(
install_dir: get_option('bindir') install_dir: get_option('bindir')
) )
conf = configuration_data()
conf.set('VERSION', meson.project_version())
conf.set('SYSCONFIGDIR', join_paths(get_option('prefix'), get_option('sysconfdir')))
conf.set('LOG_PRINT_OUTPUT', get_option('log_print_output'))
conf.set('LOG_PRINT_STACK', get_option('log_print_stack'))
conf.set('USE_FLATPAK', get_option('use_flatpak'))
configure_file(
input: 'constants.py.in',
output: 'constants.py',
configuration: conf,
install: true,
install_dir: moduledir
)
diffuse_sources = [ diffuse_sources = [
'__init__.py', '__init__.py',
'constants.py',
'dialogs.py', 'dialogs.py',
'main.py', 'main.py',
'preferences.py', 'preferences.py',

View File

@ -23,6 +23,8 @@ import os
import shlex import shlex
import sys import sys
from gettext import gettext as _
from diffuse import constants from diffuse import constants
from diffuse import utils from diffuse import utils

View File

@ -17,18 +17,21 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# This class to hold all customisable behaviour not exposed in the preferences # This class to hold all customizable behavior not exposed in the preferences
# dialogue: hotkey assignment, colours, syntax highlighting, etc. # dialogue: hotkey assignment, colours, syntax highlighting, etc.
# Syntax highlighting is implemented in supporting '*.syntax' files normally # Syntax highlighting is implemented in supporting '*.syntax' files normally
# read from the system wide initialisation file '/etc/diffuserc'. # read from the system wide initialization file '/etc/diffuserc'.
# The personal initialisation file '~/diffuse/diffuserc' can be used to change # The personal initialization file '~/diffuse/diffuserc' can be used to change
# default behaviour. # default behavior.
import glob import glob
import os import os
import re import re
import shlex import shlex
from distutils import util
from gettext import gettext as _
from diffuse import utils from diffuse import utils
import gi # type: ignore import gi # type: ignore
@ -197,6 +200,13 @@ class Resources:
'line_selection_opacity': 0.4 'line_selection_opacity': 0.4
} }
# default options
self.options = {
'log_print_output': 'False',
'log_print_stack': 'False',
'use_flatpak': 'False'
}
# default strings # default strings
self.strings = {} self.strings = {}
@ -225,14 +235,14 @@ class Resources:
elif token == 'Alt': elif token == 'Alt':
modifiers |= Gdk.ModifierType.MOD1_MASK modifiers |= Gdk.ModifierType.MOD1_MASK
elif len(token) == 0 or token[0] == '_': elif len(token) == 0 or token[0] == '_':
raise ValueError() raise ValueError(_('The key binding "{key}" is invalid').format(key=v))
else: else:
token = 'KEY_' + token token = 'KEY_' + token
if not hasattr(Gdk, token): if not hasattr(Gdk, token):
raise ValueError() raise ValueError(_('The key binding "{key}" is invalid').format(key=v))
key = getattr(Gdk, token) key = getattr(Gdk, token)
if key is None: if key is None:
raise ValueError() raise ValueError(_('The key binding "{key}" is invalid').format(key=v))
key_tuple = (ctx, (key, modifiers)) key_tuple = (ctx, (key, modifiers))
# remove any existing binding # remove any existing binding
@ -298,14 +308,25 @@ class Resources:
self.floats[symbol] = v = 0.5 self.floats[symbol] = v = 0.5
return v return v
def getOption(self, option: str) -> str:
'''Get the option value.'''
try:
return self.options[option]
except KeyError:
utils.logDebug(f'Warning: unknown option "{option}"')
return ''
def getOptionAsBool(self, option: str) -> bool:
'''Get the option value, casted as a boolean.'''
return util.strtobool(self.getOption(option))
# string resources # string resources
def getString(self, symbol): def getString(self, symbol):
try: try:
return self.strings[symbol] return self.strings[symbol]
except KeyError: except KeyError:
utils.logDebug(f'Warning: unknown string "{symbol}"') utils.logDebug(f'Warning: unknown string "{symbol}"')
self.strings[symbol] = v = '' return ''
return v
# syntax highlighting # syntax highlighting
def getSyntaxNames(self): def getSyntaxNames(self):
@ -346,7 +367,9 @@ class Resources:
try: try:
# eg. add Python syntax highlighting: # eg. add Python syntax highlighting:
# import /usr/share/diffuse/syntax/python.syntax # import /usr/share/diffuse/syntax/python.syntax
if args[0] == 'import' and len(args) == 2: if args[0] == 'import':
if len(args) != 2:
raise SyntaxError(_('Imports must have one argument'))
path = os.path.expanduser(args[1]) path = os.path.expanduser(args[1])
# relative paths are relative to the parsed file # relative paths are relative to the parsed file
path = os.path.join(utils.globEscape(os.path.dirname(file_name)), path) path = os.path.join(utils.globEscape(os.path.dirname(file_name)), path)
@ -356,23 +379,41 @@ class Resources:
for path in paths: for path in paths:
# convert to absolute path so the location of # convert to absolute path so the location of
# any processing errors are reported with # any processing errors are reported with
# normalised file names # normalized file names
self.parse(os.path.abspath(path)) self.parse(os.path.abspath(path))
# eg. make Ctrl+o trigger the open_file menu item # eg. make Ctrl+o trigger the open_file menu item
# keybinding menu open_file Ctrl+o # keybinding menu open_file Ctrl+o
elif args[0] == 'keybinding' and len(args) == 4: elif args[0] == 'keybinding':
if len(args) != 4:
raise SyntaxError(_('Key bindings must have three arguments'))
self.setKeyBinding(args[1], args[2], args[3]) self.setKeyBinding(args[1], args[2], args[3])
# eg. set the regular background colour to white # eg. set the regular background colour to white
# colour text_background 1.0 1.0 1.0 # colour text_background 1.0 1.0 1.0
elif args[0] in ['colour', 'color'] and len(args) == 5: elif args[0] in ['colour', 'color']:
if len(args) != 5:
raise SyntaxError(_('Colors must have four arguments'))
self.colours[args[1]] = _Colour(float(args[2]), float(args[3]), float(args[4])) self.colours[args[1]] = _Colour(float(args[2]), float(args[3]), float(args[4]))
# eg. set opacity of the line_selection colour # eg. set opacity of the line_selection colour
# float line_selection_opacity 0.4 # float line_selection_opacity 0.4
elif args[0] == 'float' and len(args) == 3: elif args[0] == 'float':
if len(args) != 3:
raise SyntaxError(_('Floats must have two arguments'))
self.floats[args[1]] = float(args[2]) self.floats[args[1]] = float(args[2])
# eg. enable option log_print_output
# option log_print_output true
elif args[0] == 'option':
if len(args) != 3:
raise SyntaxError(_('Options must have two arguments'))
if args[1] not in self.options:
raise SyntaxError(
_('Options "{option}" is unknown').format(option=args[1])
)
self.options[args[1]] = args[2]
# eg. set the help browser # eg. set the help browser
# string help_browser gnome-help # string help_browser gnome-help
elif args[0] == 'string' and len(args) == 3: elif args[0] == 'string':
if len(args) != 3:
raise SyntaxError(_('Strings must have two arguments'))
self.strings[args[1]] = args[2] self.strings[args[1]] = args[2]
if args[1] == 'difference_colours': if args[1] == 'difference_colours':
self.setDifferenceColours(args[2]) self.setDifferenceColours(args[2])
@ -381,7 +422,9 @@ class Resources:
# where 'normal' is the name of the default state and # where 'normal' is the name of the default state and
# 'text' is the classification of all characters not # 'text' is the classification of all characters not
# explicitly matched by a syntax highlighting rule # explicitly matched by a syntax highlighting rule
elif args[0] == 'syntax' and (len(args) == 2 or len(args) == 4): elif args[0] == 'syntax':
if len(args) != 3 and len(args) != 4:
raise SyntaxError(_('Syntaxes must have two or three arguments'))
key = args[1] key = args[1]
if len(args) == 2: if len(args) == 2:
# remove file pattern for a syntax specification # remove file pattern for a syntax specification
@ -407,17 +450,15 @@ class Resources:
# the pattern '#' is matched and classify the matched # the pattern '#' is matched and classify the matched
# characters as 'python_comment' # characters as 'python_comment'
# syntax_pattern normal comment python_comment '#' # syntax_pattern normal comment python_comment '#'
elif ( elif args[0] == 'syntax_pattern' and self.current_syntax is not None:
args[0] == 'syntax_pattern' and if len(args) < 5:
self.current_syntax is not None and raise SyntaxError(_('Syntax patterns must have at least four arguments'))
len(args) >= 5
):
flags = 0 flags = 0
for arg in args[5:]: for arg in args[5:]:
if arg == 'ignorecase': if arg == 'ignorecase':
flags |= re.IGNORECASE flags |= re.IGNORECASE
else: else:
raise ValueError() raise SyntaxError(_('Value "{value}" is unknown').format(value=arg))
self.current_syntax.addPattern( self.current_syntax.addPattern(
args[1], args[1],
args[2], args[2],
@ -426,7 +467,9 @@ class Resources:
# eg. default to the Python syntax rules when viewing # eg. default to the Python syntax rules when viewing
# a file ending with '.py' or '.pyw' # a file ending with '.py' or '.pyw'
# syntax_files Python '\.pyw?$' # syntax_files Python '\.pyw?$'
elif args[0] == 'syntax_files' and (len(args) == 2 or len(args) == 3): elif args[0] == 'syntax_files':
if len(args) != 2 and len(args) != 3:
raise SyntaxError(_('Syntax files must have one or two arguments'))
key = args[1] key = args[1]
if len(args) == 2: if len(args) == 2:
# remove file pattern for a syntax specification # remove file pattern for a syntax specification
@ -442,7 +485,9 @@ class Resources:
# eg. default to the Python syntax rules when viewing # eg. default to the Python syntax rules when viewing
# a files starting with patterns like #!/usr/bin/python # a files starting with patterns like #!/usr/bin/python
# syntax_magic Python '^#!/usr/bin/python$' # syntax_magic Python '^#!/usr/bin/python$'
elif args[0] == 'syntax_magic' and len(args) > 1: elif args[0] == 'syntax_magic':
if len(args) < 2:
raise SyntaxError(_('Syntax magics must have at least one argument'))
key = args[1] key = args[1]
if len(args) == 2: if len(args) == 2:
# remove magic pattern for a syntax specification # remove magic pattern for a syntax specification
@ -456,16 +501,30 @@ class Resources:
if arg == 'ignorecase': if arg == 'ignorecase':
flags |= re.IGNORECASE flags |= re.IGNORECASE
else: else:
raise ValueError() raise SyntaxError(
_('Value "{value}" is unknown').format(value=arg)
)
self.syntax_magic_patterns[key] = re.compile(args[2], flags) self.syntax_magic_patterns[key] = re.compile(args[2], flags)
else: else:
raise ValueError() raise SyntaxError(_('Keyword "{keyword}" is unknown').format(keyword=args[0]))
# except ValueError: except SyntaxError as e:
except: # noqa: E722 # Grr... the 're' module throws weird errors error_msg = _('Syntax error at line {line} of {file}').format(
utils.logError(_('Error processing line {line} of {file}.'.format(
line=i + 1, line=i + 1,
file=file_name file=file_name
))) )
utils.logError(f'{error_msg}: {e.msg}')
except ValueError as e:
error_msg = _('Value error at line {line} of {file}').format(
line=i + 1,
file=file_name
)
utils.logError(f'{error_msg}: {e.msg}')
except re.error:
error_msg = _('Regex error at line {line} of {file}.')
utils.logError(error_msg.format(line=i + 1, file=file_name))
except: # noqa: E722
error_msg = _('Unhandled error at line {line} of {file}.')
utils.logError(error_msg.format(line=i + 1, file=file_name))
# colour resources # colour resources

View File

@ -23,7 +23,10 @@ import locale
import subprocess import subprocess
import traceback import traceback
from gettext import gettext as _
from diffuse import constants from diffuse import constants
from diffuse.resources import theResources
import gi # type: ignore import gi # type: ignore
gi.require_version('Gtk', '3.0') gi.require_version('Gtk', '3.0')
@ -77,9 +80,9 @@ def isWindows():
def _logPrintOutput(msg): def _logPrintOutput(msg):
if constants.LOG_PRINT_OUTPUT: if theResources.getOptionAsBool('log_print_output'):
print(msg, file=sys.stderr) print(msg, file=sys.stderr)
if constants.LOG_PRINT_STACK: if theResources.getOptionAsBool('log_print_stack'):
traceback.print_stack() traceback.print_stack()
@ -154,7 +157,7 @@ def _bash_escape(s):
def _use_flatpak(): def _use_flatpak():
return constants.USE_FLATPAK return theResources.getOptionAsBool('use_flatpak')
# use popen to read the output of a command # use popen to read the output of a command

View File

@ -19,6 +19,8 @@
import os import os
from gettext import gettext as _
from diffuse import utils from diffuse import utils
from diffuse.vcs.folder_set import FolderSet from diffuse.vcs.folder_set import FolderSet
from diffuse.vcs.vcs_interface import VcsInterface from diffuse.vcs.vcs_interface import VcsInterface

View File

@ -22,8 +22,10 @@ import os
class FolderSet: class FolderSet:
'''Utility class to help support Git and Monotone. '''Utility class to help support Git and Monotone.
Represents a set of files and folders of interest for "git status" or
"mtn automate inventory."''' Represents a set of files and folders of interest for "git status" or
"mtn automate inventory."
'''
def __init__(self, names): def __init__(self, names):
self.folders = f = [] self.folders = f = []

View File

@ -19,6 +19,8 @@
import os import os
from gettext import gettext as _
from diffuse import utils from diffuse import utils
from diffuse.vcs.vcs_interface import VcsInterface from diffuse.vcs.vcs_interface import VcsInterface

View File

@ -20,6 +20,8 @@
import os import os
import glob import glob
from gettext import gettext as _
from diffuse import utils from diffuse import utils
from diffuse.vcs.folder_set import FolderSet from diffuse.vcs.folder_set import FolderSet
from diffuse.vcs.vcs_interface import VcsInterface from diffuse.vcs.vcs_interface import VcsInterface

View File

@ -19,6 +19,8 @@
import os import os
from gettext import gettext as _
from diffuse import utils from diffuse import utils
from diffuse.vcs.folder_set import FolderSet from diffuse.vcs.folder_set import FolderSet
from diffuse.vcs.bzr import Bzr from diffuse.vcs.bzr import Bzr

View File

@ -21,6 +21,7 @@ import difflib
import os import os
import unicodedata import unicodedata
from gettext import gettext as _
from typing import Dict from typing import Dict
from diffuse import utils from diffuse import utils
@ -641,7 +642,7 @@ class FileDiffViewerBase(Gtk.Grid):
panes = self.panes panes = self.panes
else: else:
panes = [self.panes[f]] panes = [self.panes[f]]
for _, pane in enumerate(panes): for pane in panes:
del pane.syntax_cache[:] del pane.syntax_cache[:]
del pane.diff_cache[:] del pane.diff_cache[:]
# re-compute the high water mark # re-compute the high water mark