summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-02-19 11:28:18 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2012-02-19 11:28:18 (GMT)
commit1ee86a15157b5b9e145dbf7c9b5a23fda60c8454 (patch)
treed7a15b00212518df6510f494ae75910d7c3337aa /Doc
parent2cf936fe7a5599dac368b4f04e5c5fc38db26c06 (diff)
parent76dea27421916d3af77273a2e724ffef0d146bdd (diff)
downloadcpython-1ee86a15157b5b9e145dbf7c9b5a23fda60c8454.zip
cpython-1ee86a15157b5b9e145dbf7c9b5a23fda60c8454.tar.gz
cpython-1ee86a15157b5b9e145dbf7c9b5a23fda60c8454.tar.bz2
merge with 3.2
Diffstat (limited to 'Doc')
-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 aab8d2e..a07be4f 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2424,7 +2424,7 @@ copying. Memory is generally interpreted as simple bytes.
bytearray(b'z123fg')
>>> v[2] = b'spam'
Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
+ File "<stdin>", line 1, in <module>
ValueError: cannot modify size of memoryview object
Notice how the size of the memoryview object cannot be changed.