Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | sndhdr.py: restored lost file; audiodev.py: import platform specific | Guido van Rossum | 1994-01-14 | 1 | -0/+270 |
| | | | | modules only when needed | ||||
* | Add test code for audioop and rgbimg (includes three binary files!) | Guido van Rossum | 1994-01-12 | 5 | -0/+405 |
| | |||||
* | Removed now useless convert functions. | Sjoerd Mullender | 1994-01-06 | 1 | -12/+0 |
| | |||||
* | Removed silly dependence on AL module. | Sjoerd Mullender | 1994-01-06 | 1 | -54/+31 |
| | |||||
* | Added Makefile with clean and clobber targets | Guido van Rossum | 1994-01-04 | 1 | -0/+12 |
| | |||||
* | Specified _framesize twice in access statement. | Sjoerd Mullender | 1994-01-03 | 1 | -1/+1 |
| | |||||
* | Initial revision | Guido van Rossum | 1993-12-29 | 6 | -0/+408 |
| | |||||
* | New files (not really...) | Guido van Rossum | 1993-12-29 | 10 | -0/+1056 |
| | |||||
* | Some minute changes. | Guido van Rossum | 1993-12-29 | 4 | -14/+42 |
| | |||||
* | aifc.py, sunau.py: Adapted comments; added access statements. | Sjoerd Mullender | 1993-12-20 | 4 | -42/+84 |
| | | | | SUNAUDIODEV.py: Added some constants for Solaris. | ||||
* | * aifc.py (Aifc_write): fix bogus reference to filename | Guido van Rossum | 1993-12-17 | 1 | -0/+3 |
| | |||||
* | * Mass change: get rid of all init() methods, in favor of __init__() | Guido van Rossum | 1993-12-17 | 42 | -207/+153 |
| | | | | | | | constructors. There is no backward compatibility. Not everything has been tested. * aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as comments) | ||||
* | Interface to audio hardware for SGI and Sun. | Sjoerd Mullender | 1993-12-17 | 1 | -0/+205 |
| | |||||
* | Don't close the file explicitly. | Sjoerd Mullender | 1993-12-16 | 1 | -2/+1 |
| | |||||
* | Don't close the file. | Sjoerd Mullender | 1993-12-16 | 1 | -8/+7 |
| | |||||
* | * wdbframewin.py (re_eval): set __privileged__ in globals so private | Guido van Rossum | 1993-12-14 | 4 | -1/+27 |
| | | | | | | | variables can still be seen by the debugger * ftplib.py (retrlines): args should be *args. * ChangeLog: entries for Sjoerd's addition sunau.py and changes to aiff.py * test_md5.py: test program for built-in md5 module | ||||
* | aifc.py: added missing tell() method in AIFC write class; | Sjoerd Mullender | 1993-12-13 | 2 | -47/+569 |
| | | | | | | | use audioop module as backup for cl module when reading or writing u-law compressed files. sunau.py: interface with the same methods as aifc for Sun and NeXT audio files | ||||
* | * test_*.py: new lambda syntax (also affects tests for filter, map, | Guido van Rossum | 1993-11-30 | 7 | -32/+112 |
| | | | | | | | | | | reduce) * ftplib.py: added default callback for retrlines; added dir() method * ftplib.py: don't return self in self.connect(); added hack so that if 'CDUP' is not understood, 'CWD ..' is tried. * ftplib.py: second method called init() should have been called connect(); if __init__ sees more than one argument, it will also try to login(). | ||||
* | * test_select.py: (some) tests for built-in select module | Guido van Rossum | 1993-11-11 | 6 | -1/+155 |
| | | | | | | * test_grammar.py, testall.out: added test for funny things in string literals * token.py, symbol.py: definitions used with built-in parser module. * tokenize.py: added double-quote recognition | ||||
* | Use __init__ instead of init. | Sjoerd Mullender | 1993-11-08 | 8 | -26/+28 |
| | | | | Also use CDDB_PATH and CDDB_WRITE_DIR environment variables in cddb.py. | ||||
* | * string.py: added rindex(), rfind(); changed index() to interpret | Guido van Rossum | 1993-11-08 | 10 | -20/+161 |
| | | | | | | | | | | | negative start indices starting from the right. * ftplib.py: debug() -> set_debuglevel(); change demo to use __init__(). * os.py: added execl, execlp, and execvp. * lambda.py: removed (now that we have built-in map, reduce, bagof, lambda) * test_b{1,2}.py, testall.out: added tests for bagof, lambda, map, reduce * commands.py: use os, not posix * test_grammar.py: make it easy to disable non-portable int overflow tests * dis.py: don't abuse range() | ||||
* | added builtin b/w compat module. | Guido van Rossum | 1993-10-22 | 4 | -11/+25 |
| | | | | changed testing of exec. | ||||
* | Added missing "import os" to pdb.help() | Guido van Rossum | 1993-10-22 | 1 | -0/+1 |
| | |||||
* | * profile.py, pdb.py: added help() function | Guido van Rossum | 1993-10-22 | 5 | -2/+93 |
| | | | | | | * builtin.py: b/w compat for builtin -> __builtin__ name change * string.py: added atof() and atol() and corresponding exceptions * test_types.py: added test for list sort with user comparison function | ||||
* | Not everyone has Guido's bin in his/her PATH... | Sjoerd Mullender | 1993-10-11 | 2 | -6/+6 |
| | |||||
* | Instead of single clicks, use double clicks to get the instance window. | Sjoerd Mullender | 1993-10-01 | 2 | -0/+4 |
| | |||||
* | WDB enhancement: Click once on a line with a class instance in the | Sjoerd Mullender | 1993-10-01 | 2 | -0/+48 |
| | | | | | | local or global variables list and you get a window with the instance variable of the class instance. This list is of course automatically kept up to date. | ||||
* | Implemented support for CDDB_PATH and CDDB_WRITE_DIR environment | Sjoerd Mullender | 1993-09-27 | 2 | -20/+104 |
| | | | | | | variables. Added auxiliary routine tochash to convert a table-of-contents to a hashed toc. | ||||
* | Fixed dealing with faulty COMM chunks. | Sjoerd Mullender | 1993-08-26 | 1 | -3/+3 |
| | |||||
* | XEvent.py: Added support for ExposeEvent. | Sjoerd Mullender | 1993-08-25 | 3 | -18/+35 |
| | | | | | profile.py: Some speed improvements (I hope). rect.py: Bug fix in union(). | ||||
* | * pdb.py: set 'privileged' property when evaluating expressions | Guido van Rossum | 1993-07-29 | 3 | -2/+11 |
| | | | | | * string.py: change whitespace to include \r, \v and \f. When importing strop succeeds, re-evaluate meaning of letters. | ||||
* | * posixpath.py: Fix border cases in normpath ('/foo/..' should return '/') | Guido van Rossum | 1993-07-06 | 4 | -6/+14 |
| | | | | | * ftplib.py: made cwd() use 'CDUP' when dirname is '..' * FL.py: added new constant FL_PLACE_FULLSCREEN | ||||
* | pdb.py, bdb.py, cmd.py: use __init__() instead of init() | Guido van Rossum | 1993-06-23 | 3 | -10/+14 |
| | |||||
* | * calendar.py: all libC functionality now moved to built-in time module | Guido van Rossum | 1993-06-23 | 7 | -41/+48 |
| | | | | | | | * imghdr.py: added jpeg recognition * torgb.py: added jpeg conversion * tzparse.py: use functions from time instead of calendar * whatsound.py: add /ufs/guido/biin/sgi to $PATH when calling 'whatsound' | ||||
* | * aifc.py: don't die on invalid MARK chunk | Guido van Rossum | 1993-06-20 | 4 | -130/+101 |
| | | | | | | | * calendar.py: remove stuff now built in time; some cleanup and generalization in the calendar printing * cmd.py: use __init__. * tzparse.py: This module is no longer necessary -- use builtin time instead! | ||||
* | * calendar.py: minor cleanups | Guido van Rossum | 1993-06-17 | 3 | -26/+49 |
| | | | | | * ftplib.py: support __init__ with optional host, port args * aifc.py: ensure header is written on close even when no data is written | ||||
* | Initial revision | Guido van Rossum | 1993-06-03 | 2 | -0/+24 |
| | |||||
* | * toaiff.py: import whatsound instead of sndhdr | Guido van Rossum | 1993-06-01 | 5 | -6/+551 |
| | | | | | | * sndhdr.py: renamed to whatsound.py; use new aifc module for AIFF/AIFC * ftplib.py: added close() (closes without sending QUIT command) * aifc.py: documented close() | ||||
* | * ftplib.py: added abort() command (sends oob data). | Guido van Rossum | 1993-05-24 | 15 | -35/+127 |
| | | | | | | * 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 cwd() | Guido van Rossum | 1993-05-17 | 1 | -0/+4 |
| | |||||
* | Updated because of new opcodes introduced for "fast" local variables. | Guido van Rossum | 1993-03-30 | 1 | -2/+9 |
| | |||||
* | Added whatis command (third try -- filesystem was full, rcs lock failed) | Guido van Rossum | 1993-03-29 | 1 | -0/+24 |
| | |||||
* | * Fix bug in tzparse.py for DST timezone | Guido van Rossum | 1993-03-29 | 7 | -9/+51 |
| | | | | | | | * Added whatis command to pdb.py * new module GET.py (GL definitions from <gl/get.h>) * rect.py: is_empty takes a rect as argument, not two points. * Added tests for builtin round() [XXX not yet complete!] | ||||
* | Use type(xxx) in stead of except TypeError. | Sjoerd Mullender | 1993-03-29 | 2 | -108/+104 |
| | |||||
* | Added some error checking. | Sjoerd Mullender | 1993-03-29 | 2 | -2/+20 |
| | |||||
* | Definitions from <gl/get.h> | Guido van Rossum | 1993-03-01 | 2 | -0/+118 |
| | |||||
* | Added new audio library functionality (getstatus, float sample fmts) | Jack Jansen | 1993-02-10 | 2 | -4/+44 |
| | |||||
* | AWARE.py: New file with definitions for Aware Inc.'s compression | Sjoerd Mullender | 1993-02-05 | 3 | -4/+114 |
| | | | | | algorithms in cl module. aifc.py: fixed a small bug. | ||||
* | aiff.py, calendar.py: change functions taking a tuple to really take a | Guido van Rossum | 1993-02-05 | 1 | -1/+2 |
| | | | | tuple (now that it makes a difference to Python) | ||||
* | CL.py, clmodule.c: Adapted to new CL library. Lots of new methods. | Sjoerd Mullender | 1993-02-04 | 3 | -251/+384 |
| | | | | aifc.py: Several small improvements. Use new methods from CL module. |