Ejemplo n.º 1
0
 def test(a: only(int)):
     return a
Ejemplo n.º 2
0
 def test_only(self):
     self.assertIsInstance(1, only(int))
     self.assertNotIsInstance(True, only(int))
Ejemplo n.º 3
0
 def test_only(self):
     self.assertIsInstance(1, only(int))
     self.assertNotIsInstance(True, only(int))
Ejemplo n.º 4
0
 def test(a: only(int)):
     return a