summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Module to lock open files using fcntl()Guido van Rossum1994-05-032-0/+30
|
* Jack's module for parsing UNIX mailbox filesGuido van Rossum1994-04-281-0/+137
|
* Added tests for missing host to open_http and open_gopherGuido van Rossum1994-04-181-0/+2
|
* Module to test threadsGuido van Rossum1994-04-141-0/+41
|
* Renamed urlopen.py to urllib.py.Guido van Rossum1994-03-221-0/+454
|
* Use float constants directly; cosmetic changes; initialize largestGuido van Rossum1994-03-151-22/+33
| | | | correctly; allow test(N) to set number of calls in the tests.
* Added gauss() (same as normal but twice as fast) and betavariate();Guido van Rossum1994-03-091-6/+47
| | | | print more statistics in test_generator()
* Random variable generatorsGuido van Rossum1994-03-091-0/+212
|
* Search for test files in sys.pathGuido van Rossum1994-03-091-0/+10
|
* urlopen: add basejoin() function.Guido van Rossum1994-03-073-0/+156
| | | | addpack: new module to add packages to sys.path.
* avoid crash in open_ftp when no host in urlGuido van Rossum1994-03-041-0/+1
|
* use caching of temp files; added cleanupGuido van Rossum1994-03-021-8/+18
|
* Added __repr__ to addbase class; delete more objectsGuido van Rossum1994-02-241-6/+10
|
* Added __del__(), close(), cleanup(), retrieve() and open_local_file()Guido van Rossum1994-02-241-18/+90
|
* Added ntpath.py (for os.py when used with Windows NT)Guido van Rossum1994-02-241-0/+348
|
* Redesigned as a classGuido van Rossum1994-02-221-114/+193
|
* Fix bug with somtimes uninitialized portGuido van Rossum1994-02-221-1/+2
|
* Towards a standard access mechanism for URLs.Guido van Rossum1994-02-213-0/+546
|
* aifc, sunau: make rate an int; os: restruct; ospath: obsolete; rfc822:Guido van Rossum1994-02-152-0/+907
| | | | | date and addr parsing; string: force result of atof to float and support atoi, atol, atof in strop; tzparcs: don't call test().
* wave.py: module to read and write .wav files with the same interfaceSjoerd Mullender1994-02-031-2/+2
| | | | | as aifc.py and sunau.py. sunau.py: small change in comment (au -> sunau).
* Use __builtin__ instead of builtinGuido van Rossum1994-01-282-7/+7
|
* aifc.py: framerate should be an int.Sjoerd Mullender1994-01-282-2/+2
| | | | | sunau.py: should convert number of frames correctly to number of bytes when reading.
* sndhdr.py: restored lost file; audiodev.py: import platform specificGuido van Rossum1994-01-141-0/+270
| | | | modules only when needed
* Add test code for audioop and rgbimg (includes three binary files!)Guido van Rossum1994-01-125-0/+405
|
* Removed now useless convert functions.Sjoerd Mullender1994-01-061-12/+0
|
* Removed silly dependence on AL module.Sjoerd Mullender1994-01-061-54/+31
|
* Added Makefile with clean and clobber targetsGuido van Rossum1994-01-041-0/+12
|
* Specified _framesize twice in access statement.Sjoerd Mullender1994-01-031-1/+1
|
* Initial revisionGuido van Rossum1993-12-296-0/+408
|
* New files (not really...)Guido van Rossum1993-12-2910-0/+1056
|
* Some minute changes.Guido van Rossum1993-12-294-14/+42
|
* aifc.py, sunau.py: Adapted comments; added access statements.Sjoerd Mullender1993-12-204-42/+84
| | | | SUNAUDIODEV.py: Added some constants for Solaris.
* * aifc.py (Aifc_write): fix bogus reference to filenameGuido van Rossum1993-12-171-0/+3
|
* * Mass change: get rid of all init() methods, in favor of __init__()Guido van Rossum1993-12-1742-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 Mullender1993-12-171-0/+205
|
* Don't close the file explicitly.Sjoerd Mullender1993-12-161-2/+1
|
* Don't close the file.Sjoerd Mullender1993-12-161-8/+7
|
* * wdbframewin.py (re_eval): set __privileged__ in globals so privateGuido van Rossum1993-12-144-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 Mullender1993-12-132-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 Rossum1993-11-307-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 moduleGuido van Rossum1993-11-116-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 Mullender1993-11-088-26/+28
| | | | Also use CDDB_PATH and CDDB_WRITE_DIR environment variables in cddb.py.
* * string.py: added rindex(), rfind(); changed index() to interpretGuido van Rossum1993-11-0810-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 Rossum1993-10-224-11/+25
| | | | changed testing of exec.
* Added missing "import os" to pdb.help()Guido van Rossum1993-10-221-0/+1
|
* * profile.py, pdb.py: added help() functionGuido van Rossum1993-10-225-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 Mullender1993-10-112-6/+6
|
* Instead of single clicks, use double clicks to get the instance window.Sjoerd Mullender1993-10-012-0/+4
|
* WDB enhancement: Click once on a line with a class instance in theSjoerd Mullender1993-10-012-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 environmentSjoerd Mullender1993-09-272-20/+104
| | | | | | variables. Added auxiliary routine tochash to convert a table-of-contents to a hashed toc.