Issue #14691: indent the traceback so the example is highlighted
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 @@
       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