Home | History | Annotate | Download | only in Objects

Lines Matching defs:mw

1041     PyNumberMethods *mv, *mw, *mz;
1048 mw = w->ob_type->tp_as_number;
1052 mw != NULL && NEW_STYLE_NUMBER(w)) {
1053 slotw = NB_TERNOP(mw, op_slot);
1219 PySequenceMethods *mw = w->ob_type->tp_as_sequence;
1224 else if (mw && mw->sq_repeat) {
1225 return sequence_repeat(mw->sq_repeat, w, v);
1366 PySequenceMethods *mw = w->ob_type->tp_as_sequence;
1376 else if (mw != NULL) {
1380 if (mw->sq_repeat)
1381 return sequence_repeat(mw->sq_repeat, w, v);