Lines Matching refs:left
53 * ends. This makes the algorithms for left and right operations
345 PyDoc_STRVAR(appendleft_doc, "Add an element to the left side of the deque.");
402 /* Space saving heuristic. Start filling from the left */
469 "Extend the left side of the deque with elements from the iterable");
766 destination block. If a block is left-over at the end, it is freed.
919 "Rotate the deque n steps to the right (default n=1). If n is negative, rotates left.");
942 /* Advance left block/index pair */
989 /* Advance left block/index pair */
2137 defdict_or(PyObject* left, PyObject* right)
2140 if (PyObject_TypeCheck(left, &defdict_type)) {
2141 self = left;
2146 other = left;
2153 PyObject *new = new_defdict((defdictobject*)self, left);