Exemplo n.º 1
0
 def test_iterkeys(self):
     environ = {'zooma': 1}
     inst = self._makeOne(environ)
     self.assertEqual(list(inst.iterkeys()), list(iterkeys_(environ)))
Exemplo n.º 2
0
 def test_iterkeys(self):
     environ = {'zooma':1}
     inst = self._makeOne(environ)
     self.assertEqual(list(inst.iterkeys()), list(iterkeys_(environ)))
Exemplo n.º 3
0
 def iterkeys(self):
     return iterkeys_(self.environ)
Exemplo n.º 4
0
 def iterkeys(self):
     return iterkeys_(self.environ)
Exemplo n.º 5
0
 def __iter__(self):
     for key in iterkeys_(self.__collections):
         yield self.__getitem__(key)
Exemplo n.º 6
0
 def __iter__(self):
     for key in iterkeys_(self.__collections):
         yield self.__getitem__(key)