Searched refs:not_callable (Results 1 – 7 of 7) sorted by relevance
1171 not_callable = staticmethod(None) variable in TestCallablePredicate.test_non_callable_staticmethod.BadStaticMethod1172 self.assertFalse(_callable(BadStaticMethod.not_callable))1182 not_callable = classmethod(None) variable in TestCallablePredicate.test_non_callable_classmethod.BadClassMethod1183 self.assertFalse(_callable(BadClassMethod.not_callable))
1090 not_callable = staticmethod(None) variable in TestCallablePredicate.test_non_callable_staticmethod.BadStaticMethod1091 self.assertFalse(_callable(BadStaticMethod.not_callable))1101 not_callable = classmethod(None) variable in TestCallablePredicate.test_non_callable_classmethod.BadClassMethod1102 self.assertFalse(_callable(BadClassMethod.not_callable))
912 Label not_callable(this); in EmitGenericPropertyStore() local921 GotoIfNot(IsCallableMap(setter_map), ¬_callable); in EmitGenericPropertyStore()926 BIND(¬_callable); in EmitGenericPropertyStore()
1247 not_callable = '__call__' not in this_spec1249 not_callable = not callable(this_spec)1250 if not_callable:
1301 not_callable = '__call__' not in this_spec1303 not_callable = not _callable(this_spec)1304 if not_callable:
1427 not_callable = '__call__' not in this_spec1429 not_callable = not _callable(this_spec)1430 if not_callable:
1445 not_callable = '__call__' not in this_spec1447 not_callable = not callable(this_spec)1450 elif not_callable: