(s)
| 27 | |
| 28 | |
| 29 | def _isUncanonicalNumber(s): |
| 30 | f = float(s) |
| 31 | if f not in _CANONICAL_NUMBERS: |
| 32 | return False # Only the canonical numbers are required to be canonical. |
| 33 | return s != floatToGoString(f) |
| 34 | |
| 35 | |
| 36 | ESCAPE_SEQUENCES = { |
no test coverage detected