(prec)
| 408 | |
| 409 | # Tests for the 'logical' functions |
| 410 | def bindigits(prec): |
| 411 | z = 0 |
| 412 | for i in range(prec): |
| 413 | z += randrange(2) * 10**i |
| 414 | return z |
| 415 | |
| 416 | def logical_un_incr_digits(prec, itr): |
| 417 | if itr is None: |
no outgoing calls
no test coverage detected
searching dependent graphs…