Home | History | Annotate | Download | only in simplejson

Lines Matching defs:default

84     Supports the following objects and types by default:
105 ``.default()`` method with another method that returns a serializable
109 __all__ = ['__init__', 'default', 'encode', 'iterencode']
146 tuple. The default is (', ', ': '). To get the most compact JSON
151 The default is UTF-8.
311 newobj = self.default(o)
314 def default(self, o):
321 implement default like this::
323 def default(self, o):
330 return JSONEncoder.default(self, o)