File differences
| doc/commands.txt |
| 90 | 90 | notcommands -> fetch_list |
| 91 | 91 | tagtypes -> fetch_list |
| 92 | 92 | urlhandlers -> fetch_list |
| 93 | decoders -> fetch_plugins |
| mpd.py |
| 140 | 140 | "notcommands": self._fetch_list, |
| 141 | 141 | "tagtypes": self._fetch_list, |
| 142 | 142 | "urlhandlers": self._fetch_list, |
| 143 | "decoders": self._fetch_plugins, |
| 143 | 144 | } |
| 144 | 145 | |
| 145 | 146 | def __getattr__(self, attr): |
| ... | ... | |
| 323 | 324 | def _fetch_objects(self, delimiters): |
| 324 | 325 | return self._wrap_iterator(self._read_objects(delimiters)) |
| 325 | 326 | |
| 327 | def _fetch_changes(self): |
| 328 | return self._fetch_objects(["cpos"]) |
| 329 | |
| 326 | 330 | def _fetch_songs(self): |
| 327 | 331 | return self._fetch_objects(["file"]) |
| 328 | 332 | |
| ... | ... | |
| 335 | 339 | def _fetch_outputs(self): |
| 336 | 340 | return self._fetch_objects(["outputid"]) |
| 337 | 341 | |
| 338 | | def _fetch_changes(self): |
| 339 | | return self._fetch_objects(["cpos"]) |
| 342 | def _fetch_plugins(self): |
| 343 | return self._fetch_objects(["plugin"]) |
| 340 | 344 | |
| 341 | 345 | def _fetch_command_list(self): |
| 342 | 346 | return self._wrap_iterator(self._read_command_list()) |
Download the corresponding diff file