summaryrefslogtreecommitdiffstats
path: root/Lib/json/encoder.py
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 /Lib/json/encoder.py
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 'Lib/json/encoder.py')
-rw-r--r--Lib/json/encoder.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/json/encoder.py b/Lib/json/encoder.py
index e1ed21f..1d8b20c 100644
--- a/Lib/json/encoder.py
+++ b/Lib/json/encoder.py
@@ -166,6 +166,7 @@ class JSONEncoder(object):
pass
else:
return list(iterable)
+ # Let the base class default method raise the TypeError
return JSONEncoder.default(self, o)
"""