----------------------
The latest release of python-musicpd can be found at
-http://pypi.python.org/pypi/python-musicpd/.
+http://pypi.python.org/pypi/python-musicpd.
Getting the latest source code
<jat⊘spatialrift.net>. He can also be found idling in #mpd on
irc.freenode.net as jat.
-The current maintainer can be found on xmpp chat room kaliko.me@conf.azylum.org
+The current maintainer can be found on xmpp chat room <kaliko.me⊘conf.azylum.org>
or you can contact him by email/xmpp <kaliko⊘azylum.org>.
.. _Installing Python Modules: http://docs.python.org/3/install/
# You should have received a copy of the GNU Lesser General Public License
# along with python-musicpd. If not, see <http://www.gnu.org/licenses/>.
+# pylint: disable=C0111
+
import socket
ERROR_PREFIX = "ACK "
SUCCESS = "OK"
NEXT = "list_OK"
-VERSION = '0.4.0pr0'
+VERSION = '0.4.0pr1'
class MPDError(Exception):
self.mpd_version = line[len(HELLO_PREFIX):].strip()
def _reset(self):
+ # pylint: disable=w0201
self.mpd_version = None
self._iterating = False
self._pending = []