()
| 452 | return f |
| 453 | |
| 454 | def randcomplex(): |
| 455 | real = randfloat() |
| 456 | if randrange(100) > 30: |
| 457 | imag = 0.0 |
| 458 | else: |
| 459 | imag = randfloat() |
| 460 | return complex(real, imag) |
| 461 | |
| 462 | def randfraction(): |
| 463 | num = randint() |
nothing calls this directly
no test coverage detected
searching dependent graphs…