Ejemplo n.º 1
0
 def test_empty(self):
     target_dict = frozendict()
     self.assertEquals(0, len(target_dict))
     self.assertEquals(0, IterTools.quantify(target_dict.iteritems(), lambda x: 1))
Ejemplo n.º 2
0
 def test_quantify_4(self):
     self.assertEquals(14, IterTools.quantify(range(15)))
Ejemplo n.º 3
0
 def test_quantify_2(self):
     self.assertEquals(0, IterTools.quantify([0]))
Ejemplo n.º 4
0
 def test_quantify_3(self):
     self.assertEquals(1, IterTools.quantify(iter([1])))
Ejemplo n.º 5
0
 def uppercount(in_str):
     return 0 - IterTools.quantify(imap(lambda ch: ch.isupper(), in_str))