HomeSort by relevance Sort by last modified time
    Searched refs:py_type (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/cython/src/Cython/Build/
Inline.py 66 py_type = type(arg)
67 if py_type is int:
73 py_type = type(arg)
74 if py_type in [list, tuple, dict, str]:
75 return py_type.__name__
76 elif py_type is complex:
78 elif py_type is float:
80 elif py_type is bool:
85 for base_type in py_type.mro():
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Code.py 724 py_type string int, long, float
728 def __init__(self, cname, value, py_type, value_code=None):
731 self.py_type = py_type
    [all...]

Completed in 38 milliseconds