Document arguments to Playlist.mpd_format()

This commit is contained in:
Stein Magnus Jodal 2010-02-07 22:36:47 +01:00
parent 21019740b1
commit 969beea69b

View File

@ -209,6 +209,12 @@ class Playlist(object):
"""
Format playlist for output to MPD client.
Optionally limit output to the slice ``[start:end]`` of the playlist.
:param start: position of first track to include in output
:type start: int
:param end: position after last track to include in output
:type end: int or :class:`None` for end of list
:rtype: list of lists of two-tuples
"""
if end is None: