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

  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Builtin.py 385 global bytes_type, str_type, unicode_type, basestring_type, slice_type
394 bytes_type = builtin_scope.lookup('bytes').type
Optimize.py 134 if iterator.type is Builtin.bytes_type:
225 PyrexTypes.CFuncTypeArg("s", Builtin.bytes_type, None)
230 PyrexTypes.CFuncTypeArg("s", Builtin.bytes_type, None)
235 if not target_type.is_int and target_type is not Builtin.bytes_type:
500 type=Builtin.bytes_type,
    [all...]
ExprNodes.py 11 unicode_type=object, str_type=object, bytes_type=object, type_type=object,
32 unicode_type, str_type, bytes_type, bytearray_type, basestring_type, slice_type namespace
71 (Builtin.unicode_type, Builtin.bytes_type) : "Cannot convert Unicode string to 'bytes' implicitly, encoding required.",
75 (Builtin.bytes_type, Builtin.unicode_type) : "Cannot convert 'bytes' object to unicode implicitly, decoding required",
76 (Builtin.bytes_type, Builtin.str_type) : "Cannot convert 'bytes' object to str implicitly. This is not portable to Py3.",
77 (Builtin.bytes_type, Builtin.basestring_type) : "Cannot convert 'bytes' object to basestring implicitly. This is not portable to Py3.",
78 (Builtin.bytes_type, PyrexTypes.c_py_unicode_ptr_type) : "Cannot convert 'bytes' object to Py_UNICODE*, use 'unicode'.",
79 (Builtin.basestring_type, Builtin.bytes_type) : "Cannot convert 'basestring' object to bytes implicitly. This is not portable.",
81 (Builtin.str_type, Builtin.bytes_type) : "Cannot convert 'str' to 'bytes' implicitly. This is not portable.",
107 'bytes': bytes_type,
    [all...]

Completed in 30 milliseconds