diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-24 00:29:11 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-24 00:29:11 (GMT) |
commit | 574ff0680fbaeec1033f2301d527c4c784921ccb (patch) | |
tree | 0a39255de2c877830a0e83bddccacfeb9d587d7e /Doc/library/json.rst | |
parent | 9cf20a664cf17becca3e2e6ef25df90508f3b308 (diff) | |
parent | ef107ee7a0a8ee27b0a54c542e3918807c981f83 (diff) | |
download | cpython-574ff0680fbaeec1033f2301d527c4c784921ccb.zip cpython-574ff0680fbaeec1033f2301d527c4c784921ccb.tar.gz cpython-574ff0680fbaeec1033f2301d527c4c784921ccb.tar.bz2 |
Issues #29189: Merge indentation fixes from 3.5
Diffstat (limited to 'Doc/library/json.rst')
-rw-r--r-- | Doc/library/json.rst | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index ed238e2..8103c61 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -505,27 +505,27 @@ Exceptions .. exception:: JSONDecodeError(msg, doc, pos, end=None) - Subclass of :exc:`ValueError` with the following additional attributes: + Subclass of :exc:`ValueError` with the following additional attributes: - .. attribute:: msg + .. attribute:: msg - The unformatted error message. + The unformatted error message. - .. attribute:: doc + .. attribute:: doc - The JSON document being parsed. + The JSON document being parsed. - .. attribute:: pos + .. attribute:: pos - The start index of *doc* where parsing failed. + The start index of *doc* where parsing failed. - .. attribute:: lineno + .. attribute:: lineno - The line corresponding to *pos*. + The line corresponding to *pos*. - .. attribute:: colno + .. attribute:: colno - The column corresponding to *pos*. + The column corresponding to *pos*. .. versionadded:: 3.5 |