Suppose I have a namedtuple like
>>> Point = namedtuple('Point','x y')
Why is it that I construct a single object via
>>> Point(3,4)
yet when I want to apply Point via map, I have to call
>>> map(Point._make,[(3,4),(5,6)])
I suspect this has something to do with classmethods, perhaps, and am hoping that in figuring this out I'll learn more about them as well. Thanks in advance.