Missed a line in the docs

This commit is contained in:
Raymond Hettinger 2007-10-08 09:56:29 +00:00
parent 2115bbc4da
commit b6893f2bf8
1 changed files with 1 additions and 1 deletions

View File

@ -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)'