summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2007-10-08 09:56:29 (GMT)
committerRaymond Hettinger <python@rcn.com>2007-10-08 09:56:29 (GMT)
commitb6893f2bf8f65fcfc1c9acae4093210b7e560fc8 (patch)
tree5002ebc18a4561ce09519e8f2e1faf6d7b843b19 /Doc
parent2115bbc4da683e6878b361a80c74203a2559e61d (diff)
downloadcpython-b6893f2bf8f65fcfc1c9acae4093210b7e560fc8.zip
cpython-b6893f2bf8f65fcfc1c9acae4093210b7e560fc8.tar.gz
cpython-b6893f2bf8f65fcfc1c9acae4093210b7e560fc8.tar.bz2
Missed a line in the docs
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 5da7b60..a7d9ab6 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -465,7 +465,7 @@ additonal methods and a read-only attribute.
('x', 'y')
>>> Color = NamedTuple('Color', 'red green blue')
- >>> Pixel = NamedTuple('Pixel', ' '.join(Point.__fields__ + Color.__fields__))
+ >>> Pixel = NamedTuple('Pixel', Point.__fields__ + Color.__fields__)
>>> Pixel(11, 22, 128, 255, 0)
Pixel(x=11, y=22, red=128, green=255, blue=0)'