summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-03-18 01:52:35 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-03-18 01:52:35 (GMT)
commitdd246171e483afa21f12e2a961a461e0d5119ea3 (patch)
treec572c72b8406b9c3c5719286e7b4ebb773a8f47d /Doc/library
parentf3460414d56500b8ff551515ac7fed78b49e33c9 (diff)
downloadcpython-dd246171e483afa21f12e2a961a461e0d5119ea3.zip
cpython-dd246171e483afa21f12e2a961a461e0d5119ea3.tar.gz
cpython-dd246171e483afa21f12e2a961a461e0d5119ea3.tar.bz2
#16057: Clarify why the base method default is called in custom encoders.
Original patch by Kushal Das.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/json.rst2
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)