Return True if the source code is unavailable for such file name.
(filename)
| 62 | |
| 63 | |
| 64 | def _source_unavailable(filename): |
| 65 | """Return True if the source code is unavailable for such file name.""" |
| 66 | return ( |
| 67 | not filename |
| 68 | or (filename.startswith('<') |
| 69 | and filename.endswith('>') |
| 70 | and not filename.startswith('<frozen ')) |
| 71 | ) |
| 72 | |
| 73 | |
| 74 | def checkcache(filename=None): |
no test coverage detected
searching dependent graphs…