OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unicode_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
396
unicode_type
= builtin_scope.lookup('unicode').type
Optimize.py
136
if iterator.type is Builtin.
unicode_type
:
307
type=Builtin.
unicode_type
, # hint for Python conversion
482
if slice_node.type is Builtin.
unicode_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.",
72
(Builtin.
unicode_type
, Builtin.str_type) : "Cannot convert Unicode string to 'str' implicitly. This is not portable and requires explicit encoding.",
73
(Builtin.
unicode_type
, PyrexTypes.c_char_ptr_type) : "Unicode objects only support coercion to Py_UNICODE*.",
74
(Builtin.
unicode_type
, PyrexTypes.c_uchar_ptr_type) : "Unicode objects only support coercion to Py_UNICODE*.",
75
(Builtin.bytes_type, Builtin.
unicode_type
) : "Cannot convert 'bytes' object to unicode implicitly, decoding required",
80
(Builtin.str_type, Builtin.
unicode_type
) : "str objects do not support coercion to unicode, use a unicode string literal instead (u'')",
85
(PyrexTypes.c_char_ptr_type, Builtin.
unicode_type
) : "Cannot convert 'char*' to unicode implicitly, decoding required",
86
(PyrexTypes.c_uchar_ptr_type, Builtin.
unicode_type
) : "Cannot convert 'char*' to unicode implicitly, decoding required"
[
all
...]
Completed in 44 milliseconds