(self, path)
| 253 | |
| 254 | # Does this path represent a directory? |
| 255 | def _is_dir(self, path): |
| 256 | # See if this is a "directory". If so, it's eligible to be part |
| 257 | # of a namespace package. We test by seeing if the name, with an |
| 258 | # appended path separator, exists. |
| 259 | dirpath = path + path_sep |
| 260 | # If dirpath is present in self._get_files(), we have a directory. |
| 261 | return dirpath in self._get_files() |
| 262 | |
| 263 | # Return some information about a module. |
| 264 | def _get_module_info(self, fullname): |
no test coverage detected
searching dependent graphs…