Changeset 9873 for python-musicbrainz2
- Timestamp:
- 2008-06-15 20:00:47 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
python-musicbrainz2/trunk/src/musicbrainz2/webservice.py
r9715 r9873 419 419 def __init__(self, title=None, discId=None, releaseTypes=None, 420 420 artistName=None, artistId=None, limit=None, 421 offset=None, query=None ):421 offset=None, query=None, trackCount=None): 422 422 """Constructor. 423 423 … … 450 450 @param offset: start results at this zero-based offset 451 451 @param query: a string containing a query in Lucene syntax 452 @param trackCount: the number of tracks in the release 452 453 453 454 @see: the constants in L{musicbrainz2.model.Release} … … 468 469 ('offset', offset), 469 470 ('query', query), 471 ('count', trackCount), 470 472 ] 471 473