Home
last modified time | relevance | path

Searched refs:__unicode__ (Results 1 – 19 of 19) sorted by relevance

/third_party/node/tools/inspector_protocol/jinja2/
D_compat.py75 cls.__unicode__ = cls.__str__
76 cls.__str__ = lambda x: x.__unicode__().encode('utf-8')
Dexceptions.py30 def __unicode__(self): member in TemplateError
Druntime.py745 def __unicode__(self): member in make_logging_undefined.LoggingUndefined
746 rv = base.__unicode__(self)
/third_party/skia/third_party/externals/jinja2/
D_compat.py71 cls.__unicode__ = cls.__str__
72 cls.__str__ = lambda x: x.__unicode__().encode("utf-8")
Dexceptions.py25 def __unicode__(self): member in TemplateError
Druntime.py900 def __unicode__(self): member in make_logging_undefined.LoggingUndefined
901 rv = base.__unicode__(self)
/third_party/jinja2/
D_compat.py71 cls.__unicode__ = cls.__str__
72 cls.__str__ = lambda x: x.__unicode__().encode("utf-8")
Dexceptions.py25 def __unicode__(self): member in TemplateError
Druntime.py900 def __unicode__(self): member in make_logging_undefined.LoggingUndefined
901 rv = base.__unicode__(self)
/third_party/python/Lib/lib2to3/
Dpytree.py242 def __unicode__(self): member in Node
251 __str__ = __unicode__
351 def __unicode__(self): member in Leaf
360 __str__ = __unicode__
/third_party/protobuf/python/google/protobuf/
Dmessage.py100 def __unicode__(self): member in Message
/third_party/markupsafe/
DCHANGES.rst50 - Fixed custom types not invoking ``__unicode__`` when used with
/third_party/skia/third_party/externals/markupsafe/
D__init__.py219 __unicode__ = __str__ = lambda s: text_type(s.escape(s.obj)) variable in _MarkupEscapeHelper
/third_party/node/tools/inspector_protocol/markupsafe/
D__init__.py219 __unicode__ = __str__ = lambda s: text_type(s.escape(s.obj)) variable in _MarkupEscapeHelper
/third_party/protobuf/python/google/protobuf/internal/
Dpython_message.py1036 def __unicode__(self): function
1038 cls.__unicode__ = __unicode__
/third_party/python/Lib/idlelib/idle_test/
Dtest_run.py86 def __unicode__(self): member in S
/third_party/python/Doc/whatsnew/
D2.2.rst822 To convert a class instance to Unicode, a :meth:`__unicode__` method can be
825 :meth:`encode`, :meth:`decode`, and :meth:`__unicode__` were implemented by
D2.7.rst852 to override the :meth:`__unicode__` method. (Implemented by
/third_party/python/Misc/
DHISTORY20143 - u'%s' % obj will now try obj.__unicode__() first and fallback to
20144 obj.__str__() if no __unicode__ method can be found.
23854 objects, and calling a __unicode__ method if it exists.