Lines Matching defs:other
191 problems when other Python threads need to run while Tcl is blocked
231 interpreter. Invoking commands from other threads is possible;
821 PyTclObject_richcompare(PyObject *self, PyObject *other, int op)
826 if (self == NULL || other == NULL) {
832 if (!PyTclObject_Check(self) || !PyTclObject_Check(other)) {
836 if (self == other)
837 /* fast path when self and other are identical */
841 Tcl_GetString(((PyTclObject *)other)->value));
2734 /* Allow other Python threads to run. */
3385 * in the other order, but for now it doesn't seem to.