[Python-Dev] Impact of Namedtuple on startup time

Raymond Hettinger raymond.hettinger at gmail.com
Mon Jul 17 11:29:18 EDT 2017


> On Jul 17, 2017, at 8:22 AM, Steve Holden <steve at holdenweb.com> wrote:
> 
> My only question is "what's a variable called _source doing in the public API?"

The convention for named tuple hnas been for all the methods and attributes to be prefixed with an underscore so that the names won't conflict with field names in the named tuple itself.  For example, we want to allow Path=namedtuple('Path', ['source', 'destination']).

If I had it all to do over again, it might have been better to have had a different convention like source_ with a trailing underscore, but that ship sailed long ago :-)


Raymond


More information about the Python-Dev mailing list