Note that these commands aren't very usable in their current form. idle()
blocks while waiting for events, and will thus hang if none are received.
Calling noidle() from another thread will cause idle() to return, but
python-mpd isn't considered re-entrant, so sharing instances between
threads isn't recommended.
== Status Commands
clearerror -> getnone
currentsong -> getobject
+idle <str> -> getlist
+noidle -> None
status -> getobject
stats -> getobject
# Status Commands
"clearerror": self._getnone,
"currentsong": self._getobject,
+ "idle": self._getlist,
+ "noidle": None,
"status": self._getobject,
"stats": self._getobject,
# Playback Option Commands