Lines Matching defs:new
627 /* Return new dict containing names from src that match scope(s).
630 either scope_type or flag is set, insert it into the new dict. The
805 /* Allocate a new block and return a pointer to it.
821 /* Extend the singly linked list of blocks with new block. */
909 - when entering a new scope
928 #define COPY_INSTR_LOC(old, new) \
929 (new).i_lineno = (old).i_lineno; \
930 (new).i_col_offset = (old).i_col_offset; \
931 (new).i_end_lineno = (old).i_end_lineno; \
932 (new).i_end_col_offset = (old).i_end_col_offset;
1413 // Instead of rewriting o, we create new frozenset and embed in the
1415 PyObject *new = PyFrozenSet_New(tuple);
1417 if (new == NULL) {
1423 PyTuple_SET_ITEM(key, 1, new);
2722 /* this block represents what we do in the new scope */
2776 /* leave the new scope */
5158 /* Has a new dict been pushed */
6440 // We've now got a bunch of new subjects on the stack. They need to remain
6867 // There's a bunch of stuff on the stack between where the new stores
6879 // Update the list of previous stores with this new name, checking for
7307 ExceptStack *new = PyMem_Malloc(sizeof(ExceptStack));
7308 if (new == NULL) {
7312 new->depth = 0;
7313 new->handlers[0] = NULL;
7314 return new;
7674 Extend the bytecode with a new instruction.
7814 So we loop until we stop seeing new EXTENDED_ARGs.
7915 if (t == key) { // obj is new constant.
8531 new constant (c1, c2, ... cn) can be appended.
8550 /* Buildup new tuple of constants */
9287 The consts object should still be in list form to allow new constants