Return a plausible module name for the path.
(path)
| 115 | return 0 |
| 116 | |
| 117 | def _modname(path): |
| 118 | """Return a plausible module name for the path.""" |
| 119 | |
| 120 | base = os.path.basename(path) |
| 121 | filename, ext = os.path.splitext(base) |
| 122 | return filename |
| 123 | |
| 124 | def _fullmodname(path): |
| 125 | """Return a plausible module name for the path.""" |
no test coverage detected
searching dependent graphs…