summaryrefslogtreecommitdiffstats
path: root/Lib/plat-irix5/cddb.py
Commit message (Collapse)AuthorAgeFilesLines
* String method conversion.Eric S. Raymond2001-02-091-12/+11
|
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-221-6/+5
|
* Write track artist info if given.Sjoerd Mullender1995-03-011-0/+2
|
* Support for album.notes and trackN.artist via notes and trackartistSjoerd Mullender1995-02-011-2/+11
| | | | instance variables.
* Can now also give a hashed ID to Cddb.Sjoerd Mullender1994-09-061-41/+56
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-011-1/+25
|
* Use __init__ instead of init.Sjoerd Mullender1993-11-081-5/+8
| | | | Also use CDDB_PATH and CDDB_WRITE_DIR environment variables in cddb.py.
* Implemented support for CDDB_PATH and CDDB_WRITE_DIR environmentSjoerd Mullender1993-09-271-10/+52
| | | | | | variables. Added auxiliary routine tochash to convert a table-of-contents to a hashed toc.
* * ftplib.py: added abort() command (sends oob data).Guido van Rossum1993-05-241-1/+1
| | | | | | * Several modules: change "class C(): ..." to "class C: ...". * flp.py: support for frozen forms. * Added string.find() which is like index but returns -1 if not found
* Added some error checking.Sjoerd Mullender1993-03-291-1/+10
|
* CL.py: adapted to newest version of CL library.Sjoerd Mullender1992-12-141-0/+104
cdplayer.py: It is now also possible to give the CD's TOC as argument to init(). The TOC is a string consisting of 2 digits giving the number of tracks and then for each track the length of the track as number of minutes and number of seconds (2 digits each). cddb.py: Interface to the .cddb directory. Usage is the same as for cdplayer.py.