(path)
| 70 | return wanted |
| 71 | |
| 72 | def pythonize(path): |
| 73 | # Normal path to python importable path |
| 74 | return path.lower().replace('/', '.').replace("\\",".") |
| 75 | |
| 76 | def humanize(path): |
| 77 | # Python importable path to normal path |
nothing calls this directly
no outgoing calls
no test coverage detected