summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Initial revisionGuido van Rossum1993-12-141-0/+116
|
* Added minmax function:Sjoerd Mullender1993-12-131-0/+27
| | | | | | -- function of module audioop: minmax (FRAGMENT, WIDTH) Minmax returns a tuple consisting of the minimum and maximum values of all samples in the sound fragment.
* 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
* Port to Solaris 2.3.Sjoerd Mullender1993-12-034-45/+203
|
* change syntactical position of lambdef (was an atom, now is a test)Guido van Rossum1993-11-303-102/+111
|
* * 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().
* * import.c (get_module): pass .py filename to parse_file, not .pyc filename!Guido van Rossum1993-11-308-766/+740
| | | | | | | | | | | * funcobject.c (func_repr): don't call getstringvalue(None) for anonymous functions. * bltinmodule.c: removed lambda (which is now a built-in function); removed implied lambda for string arg to filter/map/reduce. * Grammar, graminit.[ch], compile.[ch]: replaced lambda as built-in function by lambda as grammar entity: instead of "lambda('x: x+1')" you write "lambda x: x+1". * Xtmodule.c (checkargdict): return 0, not NULL, for error.
* Fix lay-out of previous fix.Guido van Rossum1993-11-232-4/+8
|
* * timemodule.c: Add hack for Solaris 2.Guido van Rossum1993-11-2311-29/+31
| | | | | | | | | | | | | | | * posixmodule.c: don't prototype getcwd() -- it's not portable... * mappingobject.c: double-check validity of last_name_char in dict{lookup,insert,remove}. * arraymodule.c: need memmove only for non-STDC Suns. * Makefile: comment out HTML_LIBS and XT_USE by default * pythonmain.c: don't prototype getopt() -- it's not standardized * socketmodule.c: cast flags arg to {get,set}sockopt() and addrbuf arg to recvfrom() to (ANY*). * pythonrun.c (initsigs): fix prototype, make it static * intobject.c (LONG_BIT): only #define it if not already defined * classobject.[ch]: remove all references to unused instance_convert() * mappingobject.c (getmappingsize): Don't return NULL in int function.
* * {lib,ref,ext,tut}.tex: added explicit \date{<date> \\ <release>}.Guido van Rossum1993-11-238-0/+16
| | | | * lib2.tex: change bogus \\var to \var.
* * text2latex.py: call main() instead of always processing ext.tex.Guido van Rossum1993-11-195-105/+449
| | | | | | | | * Makefile: added 'ext' to 'all' target * ext.tex: more changes towards a readable text * lib4.tex (posix): added set{uid,gid} * lib2.tex (array): restored doc for typecode and itemsize (which were there but not visible for dir())