summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Restructured library documentationGuido van Rossum1994-01-02101-0/+12244
|
* Lots of new stuff for 1.0.0 BETA releaseGuido van Rossum1994-01-021-0/+17
|
* Added some files to new moduleGuido van Rossum1994-01-023-0/+302
|
* all: 1994 copyrightGuido van Rossum1994-01-021-0/+1
| | | | | | moved config.c and most modules to ../Modules moved patchlevel.h here from ../Include changed version to 1.0.0 BETA, date to January 1994
* all: 1994 copyrightGuido van Rossum1994-01-021-0/+82
| | | | | | | | added config.h, config.h.in moved parser.h to ../Parser, patchlevel.h to ../Python allobjects.h: include config.h some: remove all refs to THINK_C_3_0 mymalloc.h: di HAVE_STDLIB differently, use size_t instead of MALLARG
* Documented the fact that IRIX 5.x also supports Sun style sharedGuido van Rossum1994-01-012-22/+20
| | | | libraries.
* 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
|
* Rot out all uses of time.milli*().Guido van Rossum1993-12-283-6/+5
|
* Rot out all uses of time.milli*().Guido van Rossum1993-12-281-8/+9
| | | | Slightly improve debug output.
* Rot out all uses of time.milli*().Guido van Rossum1993-12-281-16/+17
| | | | Also change command line options to use seconds for all times.
* Use freeze_form instead of freeze_objectGuido van Rossum1993-12-281-2/+2
|
* Added depend target; cosmetic changes to other targetsGuido van Rossum1993-12-281-5/+18
|
* Added (dummy) depend targetGuido van Rossum1993-12-281-0/+2
|
* Alpha 1.0.0Guido van Rossum1993-12-264-7/+16
|
* Py -> IncludeGuido van Rossum1993-12-261-1/+1
|
* Added function ttob.Sjoerd Mullender1993-12-241-4/+41
|
* New filesGuido van Rossum1993-12-244-0/+1523
|
* NoneGuido van Rossum1993-12-243-12/+161
|
* New filesGuido van Rossum1993-12-242-0/+91
|
* Misc changes.Guido van Rossum1993-12-241-27/+33
|
* New files.Guido van Rossum1993-12-245-0/+675
|
* Added getmaxint() so sys can initialize sys.maxint.Guido van Rossum1993-12-242-9/+17
| | | | Added Makefile.in.
* ANSIfied somewhat.Sjoerd Mullender1993-12-241-21/+22
|
* And another init incompatibility bites the dust.Sjoerd Mullender1993-12-221-1/+2
|
* Fixed use of aifc module.Sjoerd Mullender1993-12-222-18/+10
|
* * rangeobject.[ch], bltinmodule.c: incorporate new version of rangeGuido van Rossum1993-12-213-25/+129
| | | | object (unchanged from source except "range" -> "xrange").
* rgbimgmodule.c, Makefile, config.c: new module to read RGB image files.Sjoerd Mullender1993-12-214-49/+816
| | | | | | Does not need any SGI-specific libraries. cgen.py, cstubs, Makefile: Generate glmodule.c differently so that it can be compiled using an ANSI compiler.
* almodule.c: added close method, equivalent to closeport.Sjoerd Mullender1993-12-203-36/+37
| | | | thread.h: use PROTO instead of _P for prototypes.
* * Grammar: corrected old typo (class instead of 'class')Guido van Rossum1993-12-204-163/+5
| | | | | | | * dosmodule.c: MSDOS specific stuff from posixmodule.c. * posixmodule.c: removed all MSDOS specific stuff. * tokenizer.h, parsetok.h: in prototypes, don't mix named and unnamed parameters (MSC doesn't like this).
* New fileGuido van Rossum1993-12-201-0/+66
|
* New fileGuido van Rossum1993-12-201-0/+73
|
* New fileGuido van Rossum1993-12-201-0/+75
|
* 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
|
* Uniformly replaced init() functions by __init__() constructors.Guido van Rossum1993-12-1727-95/+86
| | | | | A few simple things seem to work, I haven't tested it thouroughly though...
* *** empty log message ***Guido van Rossum1993-12-174-17/+21
|
* Initial revisionGuido van Rossum1993-12-171-0/+153
|
* *** empty log message ***Guido van Rossum1993-12-172-2/+8
|
* *** empty log message ***Guido van Rossum1993-12-175-13/+12
|
* *** empty log message ***Guido van Rossum1993-12-178-79/+123
|
* *** empty log message ***Guido van Rossum1993-12-178-49/+51
|
* * lib2.tex (sys): updated sys.std{in,out,err} docs. AddedGuido van Rossum1993-12-177-6/+43
| | | | | | | | | | | | | | | sys.tracebacklimit. * tut.tex (Exceptions): change text printed by traceback. * lib5.tex (audioop): added minmax. * lib5.tex (audioop.getsample): move wandered paragraph back * lib3.tex, partparse.py: undo mucking with \nopagebreak (didn't work). * partparse.py: ignore \nopagebreak command * ref5.tex: added description of lambda forms. * ref7.tex: added reference to lambda forms to section on function definition. * lib1.tex: removed lambda as built-in function (it is now a special form). Also removed feature of filter, map, reduce to turn a string argument into an anonymous function.
* * mpzmodule.c: cast some methods to the proper type.Guido van Rossum1993-12-173-12/+31
| | | | | | | * traceback.c (tb_print): use sys.tracebacklimit as a maximum number of traceback entries to print (default 1000). * ceval.c (printtraceback): Don't print stack trace header -- this is now done by tb_print().
* 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