Exemplo n.º 1
0
 def test_ignored_keyerror(self):
     d = {}
     with autopylot.ignored(KeyError):
         d[1]
Exemplo n.º 2
0
 def _raises_exc():
     d = {}
     with autopylot.ignored(IndexError):
         d[1]
Exemplo n.º 3
0
 def test_ignored_default(self):
     d = {}
     with autopylot.ignored():
         d[1]