Message188775
I agree it should work the same as Enum, and I agree it should be possible to supply the module name. But wouldn't it be cleaner as:
Point = namedtuple('Point', 'x y z', module=__name__)
rather than:
Point = namedtuple(__name__ + '.Point', 'x y z')
? |
|
Date |
User |
Action |
Args |
2013-05-09 12:38:03 | eric.smith | set | recipients:
+ eric.smith, ncoghlan, eli.bendersky, sbt |
2013-05-09 12:38:03 | eric.smith | set | messageid: <1368103083.3.0.498852098404.issue17941@psf.upfronthosting.co.za> |
2013-05-09 12:38:03 | eric.smith | link | issue17941 messages |
2013-05-09 12:38:03 | eric.smith | create | |
|