diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-03-18 01:53:23 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-03-18 01:53:23 (GMT) |
commit | 1f2a49cfc610bfd7cbc85fd263295549377e8094 (patch) | |
tree | 21c57e0ff4ae7c72814adba2949921485076888f /Doc | |
parent | 3e2fe05e62e061032d81becb2f9ef1a8def54f63 (diff) | |
parent | dd246171e483afa21f12e2a961a461e0d5119ea3 (diff) | |
download | cpython-1f2a49cfc610bfd7cbc85fd263295549377e8094.zip cpython-1f2a49cfc610bfd7cbc85fd263295549377e8094.tar.gz cpython-1f2a49cfc610bfd7cbc85fd263295549377e8094.tar.bz2 |
Merge #16057: Clarify why the base method default is called in custom encoders.
Original patch by Kushal Das.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/json.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 7b69c24..58eee18 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -83,6 +83,7 @@ Extending :class:`JSONEncoder`:: ... def default(self, obj): ... if isinstance(obj, complex): ... return [obj.real, obj.imag] + ... # Let the base class default method raise the TypeError ... return json.JSONEncoder.default(self, obj) ... >>> json.dumps(2 + 1j, cls=ComplexEncoder) @@ -431,6 +432,7 @@ Encoders and Decoders pass else: return list(iterable) + # Let the base class default method raise the TypeError return json.JSONEncoder.default(self, o) |