# HG changeset patch # User Franz Glasner # Date 1692112257 -7200 # Node ID 1832c5d1bd009c29d2109c1d98463ed9222f307d # Parent 8a28ff4ea59cc4277cab878cbaf7b58e237a7efa Handle _sync_MARKER exactly as _sync_MISSING. Was inconsistent previously. diff -r 8a28ff4ea59c -r 1832c5d1bd00 configmix/config.py --- a/configmix/config.py Tue Aug 15 16:46:46 2023 +0200 +++ b/configmix/config.py Tue Aug 15 17:10:57 2023 +0200 @@ -49,6 +49,7 @@ _fast_getvar_s = None _fast_interpolate_variables = None _sync_MISSING = None + _sync_MARKER = None _MARKER = object() @@ -1430,4 +1431,5 @@ if _sync_MISSING: _sync_MISSING(_MISSING) +if _sync_MARKER: _sync_MARKER(_MARKER)