Home
last modified time | relevance | path

Searched refs:len_other (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Objects/
Ddictobject.c4290 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4304 len_other = PyObject_Size(other); in dictview_richcompare()
4305 if (len_other < 0) in dictview_richcompare()
4313 if (len_self == len_other) in dictview_richcompare()
4320 if (len_self < len_other) in dictview_richcompare()
4325 if (len_self <= len_other) in dictview_richcompare()
4330 if (len_self > len_other) in dictview_richcompare()
4335 if (len_self >= len_other) in dictview_richcompare()
4470 Py_ssize_t len_other = dictview_len((_PyDictViewObject *)other); in _PyDictView_Intersect() local
4471 if (len_other > len_self) { in _PyDictView_Intersect()
[all …]
/third_party/python/Lib/unittest/
Dmock.py2489 len_other = len(other)
2504 if len_other == 0:
2506 elif len_other == 3:
2508 elif len_other == 1:
2519 elif len_other == 2: