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