# HG changeset patch # User Franz Glasner # Date 1646481575 -3600 # Node ID 999cfca55d25b75eaaa8b2360f41c379bbfb6402 # Parent ef485419d7230e9c811aaca7ade607ef133ce3b7 FIX: {{::DEL::}} has 11 chars instead of 3 diff -r ef485419d723 -r 999cfca55d25 configmix/_speedups.c --- a/configmix/_speedups.c Fri Mar 04 18:14:12 2022 +0100 +++ b/configmix/_speedups.c Sat Mar 05 12:59:35 2022 +0100 @@ -1672,7 +1672,7 @@ } PyUnicode_InternInPlace(&(sstate->REF_NAMESPACE)); - sstate->DEL_VALUE = PyUnicode_FromStringAndSize("{{::DEL::}}", 3); + sstate->DEL_VALUE = PyUnicode_FromStringAndSize("{{::DEL::}}", 11); if (sstate->DEL_VALUE == NULL) { return -1; }