Lines Matching defs:opening
311 // immediately follows the opening curly brace of the fstring expression.
466 sequences because otherwise we'll think the opening '{'
548 closing brace doesn't match an opening paren, for example. It
705 int opening = (unsigned char)parenstack[nested_depth];
706 if (!((opening == '(' && ch == ')') ||
707 (opening == '[' && ch == ']') ||
708 (opening == '{' && ch == '}')))
712 "does not match opening parenthesis '%c'",
713 ch, opening);
730 int opening = (unsigned char)parenstack[nested_depth - 1];
731 RAISE_SYNTAX_ERROR("f-string: unmatched '%c'", opening);