summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Updated because of new opcodes introduced for "fast" local variables.Guido van Rossum1993-03-301-2/+9
|
* Added whatis command (third try -- filesystem was full, rcs lock failed)Guido van Rossum1993-03-291-0/+24
|
* * Fix bug in tzparse.py for DST timezoneGuido van Rossum1993-03-297-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 Mullender1993-03-292-108/+104
|
* Added some error checking.Sjoerd Mullender1993-03-292-2/+20
|
* Definitions from <gl/get.h>Guido van Rossum1993-03-012-0/+118
|
* Added new audio library functionality (getstatus, float sample fmts)Jack Jansen1993-02-102-4/+44
|
* AWARE.py: New file with definitions for Aware Inc.'s compressionSjoerd Mullender1993-02-053-4/+114
| | | | | algorithms in cl module. aifc.py: fixed a small bug.
* aiff.py, calendar.py: change functions taking a tuple to really take aGuido van Rossum1993-02-051-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 Mullender1993-02-043-251/+384
| | | | aifc.py: Several small improvements. Use new methods from CL module.
* added kludge for buggy soundfiler from SGI; when reading 0 frames,Sjoerd Mullender1993-01-291-1/+12
| | | | | just set file pointer correctly instead of returning the complete file.
* * os.py: _exit doesn't exist in all variations of posixGuido van Rossum1993-01-264-19/+45
| | | | * Added fcmp() to test_support.py and use it in test*.py
* Fixed a bug where the library inadvertently skipped over the soundSjoerd Mullender1993-01-261-2/+4
| | | | | data. Pass an extra parameter to the compression library.
* Found and fixed a few bugs in the handling of audio files with MARKs.Sjoerd Mullender1993-01-221-12/+8
|
* New module aifc to read and write AIFF-C and AIFF files. SeeSjoerd Mullender1993-01-221-0/+912
| | | | (extensive) comments in the file for usage.
* * Add some more tests for numbersGuido van Rossum1993-01-214-10/+44
| | | | * mainloop.py: don't use select unless absolutely necessary (for Mac)
* * More changes due to stricter argument passing rulesGuido van Rossum1993-01-0418-78/+113
| | | | | | * Fixed calendar.py, mimetools.py, whrandom.py to cope with time.time() returning a floating point number. (And fix old bug in calendar) * Add recursion level to mainloop.mainloop(), to make it reentrant.
* CL.py: adapted to newest version of CL library.Sjoerd Mullender1992-12-146-132/+530
| | | | | | | | | | 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.
* * Got entirely rid of path.py.Guido van Rossum1992-12-1441-228/+208
| | | | | | | | * Many modules: fixes for new, stricter, argument passing rules (most changes were automatic ones -- not all of this is tested!). * gwin.py: now uses mainloop.py for its main loop and window admin. * mainloop.py: always call dispatch() with event as a tuple! * Fix bug in pdb's 'clear' command -- don't set the bpt but clear it!
* Added output from testall run, for autotest.py.Guido van Rossum1992-11-271-0/+133
|
* Added some new tests and two new files for testing: test_types.pyGuido van Rossum1992-11-276-6/+295
| | | | | (testing operations on built-in types) and autotest.py (automatic regression testing).
* * mainloop.py: added facility for calling select(). Also addedGuido van Rossum1992-11-267-28/+374
| | | | | | | | embryonic facility for pseudo-modal dialogs. * stdwinevents.py: added modifier masks for key/mouse events * renamed exceptions in nntplib.py * Changed string.join() to call string.joinfields() to profit of strop.joinfields()
* Added all_errors, list of all possible exceptions.Guido van Rossum1992-11-061-1/+7
|
* Use getsockname() if it existsGuido van Rossum1992-11-051-11/+18
|
* Added much functionality, changed some names (errors, login).Guido van Rossum1992-11-051-54/+160
|
* * change default line numbers for 'list' in pdb.pyGuido van Rossum1992-11-057-10/+442
| | | | | | | | | * changed eval() into getattr() in cmd.py * added dirname(), basename() and (dummy) normath() to macpath.py * renamed nntp.py to nntplib.py * Made string.index() compatible with strop.index() * Make string.atoi('') raise string.atoi_error rather than ValueError * Added dirname() and normpath() to posixpath.
* Initial revisionGuido van Rossum1992-11-041-0/+258
|
* Misc changes and new modules. whrandom is "objectified". SOCKET.pyGuido van Rossum1992-10-1810-46/+778
| | | | is moved to the sgi subdirectory.
* New module "CL" (Compression Library) for Irix 4.0.5 and higher.Sjoerd Mullender1992-09-242-0/+168
|
* New module regsub contains sub(), gsub() and split() as in nawk.Guido van Rossum1992-09-204-6/+152
| | | | | string.splitfields(s, '') now returns [s] as split() in nawk. Added _exit to exported functions of os.
* Added post_mortem() and pm() interfaces to pdb and wdb.Guido van Rossum1992-09-086-4/+63
| | | | | | Added colorsys.py (color system conversions). SV.py: new version for new svideo.h (Sjoerd). DEVICE.py: added VIDEO event type.
* New module 'colorsys' implements conversions between different color systems.Guido van Rossum1992-09-071-0/+119
|
* version for new librarySjoerd Mullender1992-09-032-92/+30
|
* Added a _v21 def to FL.py and added two new input field typesGuido van Rossum1992-09-029-160/+167
| | | | | | Added runcall(func, *args) interfaces to profile.py, bdb.py, pdb.py, wdb.py Added new module bisect.py and used it in sched.py. Mostly cosmetic changes to profile.py (changed output format).
* Changed to use regex directly instead of regexp.Guido van Rossum1992-08-252-6/+8
|
* New module implementing a multi-everything queue.Guido van Rossum1992-08-251-0/+122
|
* splitfields(s, '') is illegalGuido van Rossum1992-08-192-2/+10
|
* Module getattr doesn't exist any more, it's now called newdir.Guido van Rossum1992-08-191-2/+2
|
* Added emacs.py (for misc/py-connect.el).Guido van Rossum1992-08-092-0/+44
| | | | posixpath.py: added undocumented expanndvars() (expands $VAR in string).
* Removed *.libs (now in ./sgi);Guido van Rossum1992-08-064-4/+18
| | | | | added gettext() method to TextEdit.py; fixed string.atoi() to ignore leading zeros.
* new file for SGI VideoSjoerd Mullender1992-08-042-0/+302
|
* New module to support decoding multipart messages (also see mimetools).Guido van Rossum1992-07-131-0/+118
|
* New modules mimetools and rfc822.Guido van Rossum1992-07-133-1/+325
| | | | Minor, minor changes to commands.py and sndhdr.py.
* Changed calendar.py to define lists of literals instead of tuples.Guido van Rossum1992-07-091-9/+9
| | | | Got rid of old module 'localtime.py'.
* Initial revisionGuido van Rossum1992-06-034-0/+216
|
* Fix pnm test for short files and add X bitmap as recognized typeGuido van Rossum1992-06-031-1/+10
|
* Remove reference to obsolete module 'audio'Guido van Rossum1992-06-031-15/+7
|
* Comment out debug prints (by Sjoerd)Guido van Rossum1992-06-032-8/+8
|
* Initial revisionGuido van Rossum1992-05-271-0/+98
|
* Unmerged except and finally clausesGuido van Rossum1992-05-062-5/+5
|