()
| 22 | FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL |
| 23 | |
| 24 | def _floatconstants(): |
| 25 | return float('nan'), float('inf'), float('-inf') |
| 26 | |
| 27 | NaN, PosInf, NegInf = _floatconstants() |
| 28 |
no outgoing calls
no test coverage detected
searching dependent graphs…