From ea1737cca2fbca6590dfdbe6cc46cd59967384d8 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 6 Feb 2010 02:35:20 +0100 Subject: [PATCH] despotify r503 is now the recommended version as it has one known error less --- docs/development.rst | 30 +----------------------------- docs/installation.rst | 4 ++-- 2 files changed, 3 insertions(+), 31 deletions(-) diff --git a/docs/development.rst b/docs/development.rst index 9aff39ec..68239393 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -60,7 +60,7 @@ features we wished was there. * r483: Sometimes segfaults when traversing stored playlists, their tracks, artists, and albums. As it is not predictable, it may be a concurrency issue. -* r499: Segfaults when looking up playlists, both your own lists and other +* r503: Segfaults when looking up playlists, both your own lists and other peoples shared lists. To reproduce:: >>> import spytify @@ -68,34 +68,6 @@ features we wished was there. >>> s.lookup('spotify:user:klette:playlist:5rOGYPwwKqbAcVX8bW4k5V') Segmentation fault -* r499: Error when accessing an album through an artist. To reproduce:: - - >>> import spytify - >>> s = spytify.Spytify('alice', 'secret') - >>> result = s.search('Gorillaz') - >>> artist = result.playlist.tracks[0].artists[0] - >>> artist - - >>> artist.albums - ERROR: An unexpected error occurred while tokenizing input - The following traceback may be corrupted or invalid - The error message is: ('EOF in multi-line statement', (1423, 0)) - - ERROR: An unexpected error occurred while tokenizing input - The following traceback may be corrupted or invalid - The error message is: ('EOF in multi-line statement', (1455, 0)) - - --------------------------------------------------------------------------- - TypeError Traceback (most recent call last) - - /home/jodal/ in () - - /usr/local/lib/python2.6/dist-packages/spytify.so in spytify.Artist.albums.__get__ (src/spytify.c:4867)() - - /usr/local/lib/python2.6/dist-packages/spytify.so in spytify.Artist.get_full_data (src/spytify.c:4539)() - - TypeError: Cannot convert spytify.AlbumDataFull to spytify.ArtistDataFull - pyspotify ========= diff --git a/docs/installation.rst b/docs/installation.rst index 4f5ece5e..f6eb8326 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -38,9 +38,9 @@ Install despotify's dependencies. At Debian/Ubuntu systems:: sudo aptitude install libssl-dev zlib1g-dev libvorbis-dev \ libtool libncursesw5-dev libao-dev -Check out revision 499 of the despotify source code:: +Check out revision 503 of the despotify source code:: - svn co https://despotify.svn.sourceforge.net/svnroot/despotify@499 despotify + svn co https://despotify.svn.sourceforge.net/svnroot/despotify@503 despotify Build and install despotify::