commit | 5affd23e6f42125998724787025080a24839266e | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Wed Apr 05 09:37:24 2017 +0300 |
committer | GitHub <noreply@github.com> | Wed Apr 05 09:37:24 2017 +0300 |
tree | 8b7ca82362e78a32805b117d574082d512251d3c | |
parent | 43ba8861e0ad044efafa46a7cc04e12ac5df640e [diff] [blame] |
bpo-29762: More use "raise from None". (#569) This hides unwanted implementation details from tracebacks.
diff --git a/Lib/json/scanner.py b/Lib/json/scanner.py index 86426cd..c451eba 100644 --- a/Lib/json/scanner.py +++ b/Lib/json/scanner.py
@@ -29,7 +29,7 @@ try: nextchar = string[idx] except IndexError: - raise StopIteration(idx) + raise StopIteration(idx) from None if nextchar == '"': return parse_string(string, idx + 1, strict)