Home | History | Annotate | Download | only in library

Lines Matching full:_make

615        def _make(cls, iterable, new=tuple.__new__, len=len):
632 result = _self._make(map(kwds.pop, ('x', 'y'), _self))
670 for emp in map(EmployeeRecord._make, csv.reader(open("employees.csv", "rb"))):
677 for emp in map(EmployeeRecord._make, cursor.fetchall()):
684 .. classmethod:: somenamedtuple._make(iterable)
691 >>> Point._make(t)
781 >>> Status = namedtuple('Status', 'open pending closed')._make(range(3))