Lines Matching defs:new
32 /* Bump HIGHEST_PROTOCOL when new opcodes are added to the pickle protocol.
574 /* Push an object on stack, adding a new reference to the object. */
764 PyMemoTable *new = PyMemoTable_New();
765 if (new == NULL)
768 new->mt_used = self->mt_used;
769 new->mt_allocated = self->mt_allocated;
770 new->mt_mask = self->mt_mask;
773 PyMem_Free(new->mt_table);
774 new->mt_table = PyMem_NEW(PyMemoEntry, self->mt_allocated);
775 if (new->mt_table == NULL) {
776 PyMem_Free(new);
783 memcpy(new->mt_table, self->mt_table,
786 return new;
868 /* Allocate new table. */
885 /* newentry is a pointer to a chunk of the new
1094 /* Setup new frame */
1755 /* Store an object in the memo, assign it a new unique ID based on the number
4717 to map the new Python 3 names to the old module names used in Python
4816 Copy the memo to a new object.
7046 /* Try to map the old names used in Python 2.x to the new ones used in
7240 map the old Python 2 names to the new names used in Python 3. The
7322 Copy the memo to a new object.
7666 to map the new Python 3 names to the old module names used in Python
7731 try to map the new Python 3 names to the old module names used in
7798 map the old Python 2 names to the new names used in Python 3. The
7858 map the old Python 2 names to the new names used in Python 3. The