1. Abstract¶
The namedtupledefs package provides a patched version of the original collections.namedtuple. The namedtupledefs package introduces:
field defaults
Default values for the fields in function style see [PYFUNC] The implementation is pure dynamic by generated default values for the method __new__, thus has no impact on the created namedtuple class. Neither on resources, nor on performance. See API_NEW.
merge
For an overview with additional details refer to the following section Blueprint.
For the standard library collections.namedtuple see Python documentation [namedtuple]. For the release for Python2 refer to namedtupledefs2 [namedtupledefs2].