(self)
| 1358 | # but inherit them from classes which are not subclasses of Random |
| 1359 | class Mixin1: |
| 1360 | def random(self): |
| 1361 | called.add('Mixin1.random') |
| 1362 | return random.Random.random(self) |
| 1363 | class Mixin2: |
| 1364 | def getrandbits(self, n): |
| 1365 | called.add('Mixin2.getrandbits') |
no test coverage detected