Lines Matching defs:check
651 new_calls = [] # to check the order of __new__ calls
1307 # Inherit from object on purpose to check some backwards compatibility paths
1401 # Issue2115: slot descriptors did not correctly check
2759 # Because octlong overrides __add__, we can't check the absence of +0
3240 def check(descr, what):
3242 check(FileIO.closed, "True if the file is closed") # getset descriptor
3243 check(complex.real, "the real part of a complex number") # member descriptor
4164 # check here that E's gets restored.
4298 # Now check various error cases
4593 def check(expr, x, y):
4623 check(expr, a, a)
4624 check(expr, a, N1)
4625 check(expr, a, N2)
4627 check(iexpr, a, a)
4628 check(iexpr, a, N1)
4629 check(iexpr, a, N2)
4633 check(iexpr, c, a)
4634 check(iexpr, c, N1)
4635 check(iexpr, c, N2)
4638 # ceval.c's assign_slice used to check for
4670 # Also check type_getattro for correctness.
5681 type_set_bases must check for an inheritance cycle not only through
5717 type_set_bases must check for reentrancy upon finishing its job