()
| 6 | |
| 7 | from scanner import make_scanner |
| 8 | def _import_c_scanstring(): |
| 9 | try: |
| 10 | from _speedups import scanstring |
| 11 | return scanstring |
| 12 | except ImportError: |
| 13 | return None |
| 14 | c_scanstring = _import_c_scanstring() |
| 15 | |
| 16 | __all__ = ['JSONDecoder'] |
no outgoing calls
no test coverage detected
searching dependent graphs…