Lines Matching refs:nested_depth
581 Py_ssize_t nested_depth = 0;
602 assert(nested_depth >= 0);
661 if (nested_depth >= MAXLEVEL) {
665 parenstack[nested_depth] = ch;
666 nested_depth++;
672 } else if (nested_depth == 0 &&
700 if (!nested_depth) {
704 nested_depth--;
705 int opening = (unsigned char)parenstack[nested_depth];
729 if (nested_depth) {
730 int opening = (unsigned char)parenstack[nested_depth - 1];