Mercurial > hgrepos > Python > libs > ConfigMix
changeset 713:1832c5d1bd00
Handle _sync_MARKER exactly as _sync_MISSING.
Was inconsistent previously.
| author | Franz Glasner <f.glasner@feldmann-mg.com> |
|---|---|
| date | Tue, 15 Aug 2023 17:10:57 +0200 |
| parents | 8a28ff4ea59c |
| children | 465bac57b97e |
| files | configmix/config.py |
| diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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)
