(self)
| 112 | [4, 5, 6]]) |
| 113 | |
| 114 | def test_cannot_seed(self): |
| 115 | rs = random.RandomState(PCG64(0)) |
| 116 | with assert_raises(TypeError): |
| 117 | rs.seed(1234) |
| 118 | |
| 119 | def test_invalid_initialization(self): |
| 120 | assert_raises(ValueError, random.RandomState, MT19937) |
nothing calls this directly
no test coverage detected