(self)
| 594 | self.assertRaises(TypeError, self.gen.randbytes, 1.0) |
| 595 | |
| 596 | def test_mu_sigma_default_args(self): |
| 597 | self.assertIsInstance(self.gen.normalvariate(), float) |
| 598 | self.assertIsInstance(self.gen.gauss(), float) |
| 599 | |
| 600 | |
| 601 | try: |
nothing calls this directly
no test coverage detected