Home | History | Annotate | Download | only in python2.7

Lines Matching defs:items

359     The items are either a Python list (if there's multiple values) or
783 form.items() -> [(key, [val, val, ...]), (key, [val, val, ...]), ...]
801 get all of the values. values() and items() are a compromise:
819 def items(self):
821 for key, value in self.dict.items():
846 def items(self):