This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"collections.namedtuple implementation without using exec." | |
from collections import OrderedDict | |
from keyword import iskeyword | |
from operator import itemgetter | |
import itertools | |
import sys | |
__all__ = ['NamedTuple', 'namedtuple'] | |