diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2012-07-21 09:17:38 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2012-07-21 09:17:38 (GMT) |
commit | d6da90f93d6d44365f5c9f6a2290be90ccfc8d60 (patch) | |
tree | 1354a065046686913cb29c1c8c8e0a6ea9e9dc79 /Lib/pprint.py | |
parent | b4bbee25b1e3f4bccac222f806b3138fb72439d6 (diff) | |
download | cpython-d6da90f93d6d44365f5c9f6a2290be90ccfc8d60.zip cpython-d6da90f93d6d44365f5c9f6a2290be90ccfc8d60.tar.gz cpython-d6da90f93d6d44365f5c9f6a2290be90ccfc8d60.tar.bz2 |
Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with unorderable key.
Diffstat (limited to 'Lib/pprint.py')
-rw-r--r-- | Lib/pprint.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/pprint.py b/Lib/pprint.py index b8417f5..ae96dde 100644 --- a/Lib/pprint.py +++ b/Lib/pprint.py @@ -86,7 +86,11 @@ class _safe_key: self.obj = obj def __lt__(self, other): - rv = self.obj.__lt__(other.obj) + try: + rv = self.obj.__lt__(other.obj) + except TypeError: + rv = NotImplemented + if rv is NotImplemented: rv = (str(type(self.obj)), id(self.obj)) < \ (str(type(other.obj)), id(other.obj)) |