(x)
| 97 | return x |
| 98 | |
| 99 | def float_value(x): |
| 100 | x = resolve1(x) |
| 101 | if not isinstance(x, float): |
| 102 | if STRICT: |
| 103 | raise PDFTypeError('Float required: %r' % x) |
| 104 | return 0.0 |
| 105 | return x |
| 106 | |
| 107 | def num_value(x): |
| 108 | x = resolve1(x) |
nothing calls this directly
no test coverage detected
searching dependent graphs…