Lines Matching defs:items
16 def items(self):
17 return sorted(self.data.items())
23 return [i[1] for i in self.items()]
26 return iter(self.items())
95 L = cf.items('Spacey Bar From The Beginning')
105 L = cf['Spacey Bar From The Beginning'].items()
108 L = cf.items()
803 L = list(cf.items("section", vars={'value': 'value'}))
807 cf.items("no such section")
1381 self.assertEqual(len(cf.items('another one!')), 5) # 4 in section and
1384 cf.items('no values here')
1484 for default, value in cf[self.default_section].items():