From b6893f2bf8f65fcfc1c9acae4093210b7e560fc8 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 8 Oct 2007 09:56:29 +0000 Subject: Missed a line in the docs --- Doc/library/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)' -- cgit v0.12