summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-04-29 18:33:28 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2012-04-29 18:33:28 (GMT)
commit89c4eef435addb2db972304d715793e224307886 (patch)
treeac2be3c6c015ede4944068f4fc45c57214aefadd /Doc/library
parent89e6d3896af934a125e4bf07cf9cc8651e7f272a (diff)
downloadcpython-89c4eef435addb2db972304d715793e224307886.zip
cpython-89c4eef435addb2db972304d715793e224307886.tar.gz
cpython-89c4eef435addb2db972304d715793e224307886.tar.bz2
Issue #14691: indent the traceback so the example is highlighted
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index f06f579..4e1f7a7 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2459,7 +2459,7 @@ copying.
bytearray(b'z123fg')
>>> v[2:3] = b'spam'
Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
+ File "<stdin>", line 1, in <module>
ValueError: memoryview assignment: lvalue and rvalue have different structures
>>> v[2:6] = b'spam'
>>> data