(self, dirs, name)
| 148 | return os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir, "input_methods", self.imeDirName, "config")) |
| 149 | |
| 150 | def findFile(self, dirs, name): |
| 151 | for dirname in dirs: |
| 152 | path = os.path.join(dirname, name) |
| 153 | if os.path.exists(path): |
| 154 | return path |
| 155 | return None |
| 156 | |
| 157 | def copytree(slef, src, dst, symlinks=False, ignore=None): |
| 158 | for item in os.listdir(src): |
no test coverage detected