Lines Matching defs:obj
3 operator.isCallable(obj) -> callable(obj)
4 operator.sequenceIncludes(obj) -> operator.contains(obj)
5 operator.isSequenceType(obj) -> isinstance(obj, collections.abc.Sequence)
6 operator.isMappingType(obj) -> isinstance(obj, collections.abc.Mapping)
7 operator.isNumberType(obj) -> isinstance(obj, numbers.Number)
8 operator.repeat(obj, n) -> operator.mul(obj, n)
9 operator.irepeat(obj, n) -> operator.imul(obj, n)
35 obj = "'(' obj=any ')'"
38 trailer< '.' %(methods)s > trailer< %(obj)s > >
40 power< %(methods)s trailer< %(obj)s > >
41 """ % dict(methods=methods, obj=obj)
54 obj = results["obj"]
55 return Call(Name("callable"), [obj.clone()], prefix=node.prefix)
84 obj = results["obj"]
85 args = [obj.clone(), String(", " + ".".join([module, abc]))]
94 sub = (str(results["obj"]),)