Mercurial > hgrepos > Python > libs > ConfigMix
comparison configmix/ini.py @ 153:4b10bd85610b
FIX: Typo
| author | Franz Glasner <hg@dom66.de> |
|---|---|
| date | Sat, 14 Apr 2018 17:21:12 +0200 |
| parents | 139fb1d1ef54 |
| children | e2e8d21b4122 |
comparison
equal
deleted
inserted
replaced
| 152:139fb1d1ef54 | 153:4b10bd85610b |
|---|---|
| 68 def get_path_list(self, section, option): | 68 def get_path_list(self, section, option): |
| 69 v = self.get(section, option) | 69 v = self.get(section, option) |
| 70 return v.split(os.pathsep) | 70 return v.split(os.pathsep) |
| 71 | 71 |
| 72 def read(self, filenames): | 72 def read(self, filenames): |
| 73 """Not implemented. Use :meth:`read_file` instead""" | 73 """Not implemented. Use :meth:`read_file` instead.""" |
| 74 raise NotImplementedError("use `read_file()' instead") | 74 raise NotImplementedError("use `read_file()' instead") |
| 75 | 75 |
| 76 def readfp(self, fp, filename): | 76 def readfp(self, fp, filename): |
| 77 """Compatibility for older Python versions. | 77 """Compatibility for older Python versions. |
| 78 | 78 |
