Return the resfs path to the source code of the module with the given name.
(mod)
| 281 | |
| 282 | |
| 283 | def mod_path(mod): |
| 284 | """ |
| 285 | Return the resfs path to the source code of the module with the given name. |
| 286 | """ |
| 287 | return py_prefix + _b(mod).replace(b'.', b'/') + b'.py' |
| 288 | |
| 289 | |
| 290 | class ResourceImporter(SourceFileLoader): |
no test coverage detected