Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make it work under MPW too. | Guido van Rossum | 1994-10-01 | 1 | -3/+2 |
| | |||||
* | Added documentation on the aifc module. | Sjoerd Mullender | 1994-09-29 | 4 | -0/+362 |
| | |||||
* | Fix bug in formatting of new questions | Guido van Rossum | 1994-09-29 | 1 | -1/+3 |
| | |||||
* | Got rid of history (was beginning to get silly). | Guido van Rossum | 1994-09-29 | 1 | -100/+10 |
| | | | | Removed a few diagram breaks since Kees' program is now cleverer | ||||
* | Cosmetic changes | Guido van Rossum | 1994-09-29 | 1 | -14/+17 |
| | |||||
* | config.c: add MacOS module | Guido van Rossum | 1994-09-29 | 2 | -38/+52 |
| | | | | macosmodule.c: lots of updates (though playing sound can still hang :-( ) | ||||
* | * Modules/xxmodule.c: integrated with xxobject.c by Jack | Guido van Rossum | 1994-09-29 | 3 | -13/+169 |
| | | | | * Modules/(posix,socket}module.c: more NT changes | ||||
* | * Python/ceval.c, Include/ceval.h: promote MakePendingCalls to | Guido van Rossum | 1994-09-29 | 2 | -10/+48 |
| | | | | | | | | | | global: Py_MakePendingCalls. Also guard against recursive calls * Include/classobject.h, Objects/classobject.c, Python/{ceval.c,bltinmodule.c}: entirely redone operator overloading. The rules for class instances are now much more relaxed than for other built-in types (whose coerce must still return two objects of the same type) | ||||
* | * Python/{modsupport.c,getargs.c,Makefile.in}, | Guido van Rossum | 1994-09-29 | 3 | -341/+588 |
| | | | | | | | Include/modsupport.h: moved getargs() to its own file and re-implemented it entirely to support optional arguments, multiple arguments without surrounding parentheses (when called as newgetargs()), and better error messages | ||||
* | * Python/errors.c (err_clear): clear interpreter stack trace | Guido van Rossum | 1994-09-29 | 1 | -1/+5 |
| | |||||
* | * Python/pythonrun.c: add string "Python" to fatal error message | Guido van Rossum | 1994-09-29 | 1 | -1/+1 |
| | |||||
* | * Python/pythonmain.c: fatal error if can't alloc mem for -c | Guido van Rossum | 1994-09-29 | 1 | -1/+2 |
| | | | | string | ||||
* | * Python/traceback.c: security fix -- check for buffer oveflow | Guido van Rossum | 1994-09-29 | 1 | -1/+6 |
| | | | | before concatenating sys.path item and module name | ||||
* | * Include/classobject.h, Objects/classobject.c, Python/ceval.c: | Guido van Rossum | 1994-09-28 | 6 | -204/+219 |
| | | | | | | | | | | | | | | | | | | entirely redone operator overloading. The rules for class instances are now much more relaxed than for other built-in types (whose coerce must still return two objects of the same type) * Objects/floatobject.c: add overflow check when converting float to int and implement truncation towards zero using ceil/float * Objects/longobject.c: change ValueError to OverflowError when converting to int * Objects/rangeobject.c: modernized * Objects/stringobject.c: use HAVE_LIMITS instead of __STDC__ * Objects/xxobject.c: changed to use new style (not finished?) | ||||
* | * Parser/intrcheck.c: make 'interrupted' global (forgot for | Guido van Rossum | 1994-09-28 | 1 | -1/+1 |
| | | | | whom...) | ||||
* | ceval.h: added Py_MakePendingCalls() | Guido van Rossum | 1994-09-28 | 4 | -1/+4 |
| | | | | | | classobject.h: added instancebinop() modsupport.h: added newgetargs() rename1.h: removed Py_FPROTO | ||||
* | Fix various potential buffer overrun problems. | Guido van Rossum | 1994-09-26 | 1 | -9/+18 |
| | |||||
* | point perl to ~/bin/perl | Barry Warsaw | 1994-09-23 | 1 | -1/+1 |
| | |||||
* | New version: 1.14 (previous oine was misnumbered 1.12). | Guido van Rossum | 1994-09-23 | 1 | -64/+532 |
| | | | | Lots of new questions about everything. | ||||
* | Added obfuxcated lambda's by Ulf Bertelt | Guido van Rossum | 1994-09-23 | 1 | -0/+30 |
| | |||||
* | Various layout changes; some extra warnings; for IRIX, IRIX 5 is the default. | Guido van Rossum | 1994-09-21 | 1 | -18/+31 |
| | |||||
* | Specified libraries for flmodule. | Sjoerd Mullender | 1994-09-21 | 1 | -1/+1 |
| | |||||
* | Fix bug if tmpcache is None | Guido van Rossum | 1994-09-21 | 1 | -1/+2 |
| | |||||
* | * Python/pythonrun.c (print_error): print only last line of | Guido van Rossum | 1994-09-19 | 1 | -0/+12 |
| | | | | multi-line source line | ||||
* | * Parser/tokenizer.c (tok_nextc): count line numbers when parsing | Guido van Rossum | 1994-09-19 | 1 | -7/+21 |
| | | | | strings | ||||
* | Support user routines (callbacks) on sound channels. | Guido van Rossum | 1994-09-16 | 1 | -6/+74 |
| | |||||
* | Added some files, reformatted some paragraphs. | Guido van Rossum | 1994-09-16 | 2 | -18/+18 |
| | |||||
* | Added some more files to Mac-Makefile (not tested!); finishing touch | Guido van Rossum | 1994-09-16 | 1 | -22/+23 |
| | | | | to README.MPW. | ||||
* | audiodev.py: Mac port. | Guido van Rossum | 1994-09-16 | 2 | -3/+26 |
| | | | | | Audio_mac.py: Mac specific class for audiodev.py. aifc.py: open files for reading/writing in binary mode ('rb', 'wb'). | ||||
* | gestaltmodule.c: interface to Gestalt Manager. | Guido van Rossum | 1994-09-16 | 3 | -0/+475 |
| | | | | | macosmodule.c: interface to random collection of Managers. macsetfiletype.c: set file type, for import.c. | ||||
* | Put a comment start symbol at the start of a comment that lacked one. | Sjoerd Mullender | 1994-09-15 | 1 | -1/+1 |
| | |||||
* | Some new files... | Guido van Rossum | 1994-09-14 | 5 | -1/+100 |
| | |||||
* | * Lib/whrandom.py: if seed is (0,0,0), initialize from current | Guido van Rossum | 1994-09-14 | 1 | -9/+9 |
| | | | | time; default seed's arguments to (0,0,0) | ||||
* | * various modules: #include "Python.h" and remove most remporary | Guido van Rossum | 1994-09-14 | 6 | -67/+20 |
| | | | | renaming hacks | ||||
* | * Python/ceval.c (eval_code): added registry of pending functions | Guido van Rossum | 1994-09-14 | 1 | -1/+91 |
| | | | | | (to be used by functions that are called asynchronously, like UNIX signal handlers or Mac I/O completion routines) | ||||
* | * Import/pythonrun.h, Python/{import,pythonrun}.c, | Guido van Rossum | 1994-09-14 | 2 | -1/+58 |
| | | | | | | mac/macsetfiletype.c: changes by Jack to execute .pyc file passed as command line argument. On the Mac .pyc files are given a special type so they can be double-clicked | ||||
* | pythonrun.h: added run_pyc_file | Guido van Rossum | 1994-09-14 | 5 | -5/+14 |
| | | | | | ceval.h: added Py_AddPendingCall rest: modules using the new naming scheme must now include Python.h | ||||
* | * Modules/Setup.in: define PYTHONPATH using COREPYTHONPATH for | Guido van Rossum | 1994-09-12 | 2 | -2/+4 |
| | | | | | | extensions; add -lm to math module definition * Modules/Makefile.pre.in: remove *.so and so_locations on clobber | ||||
* | If an argument on a Setup line starts with `$', treat it as a library, | Sjoerd Mullender | 1994-09-12 | 1 | -0/+1 |
| | | | | but only if it does not end in a known suffix. | ||||
* | The usual junk | Guido van Rossum | 1994-09-12 | 4 | -34/+192 |
| | |||||
* | Shared library support | Guido van Rossum | 1994-09-12 | 2 | -3/+87 |
| | |||||
* | Support shared library creation. | Guido van Rossum | 1994-09-12 | 3 | -62/+128 |
| | |||||
* | Steen Lumholt's termios interface. | Guido van Rossum | 1994-09-12 | 1 | -0/+258 |
| | |||||
* | Added _getpty interface. | Guido van Rossum | 1994-09-12 | 1 | -0/+30 |
| | |||||
* | Mods for HP-UX dynamic loading. | Guido van Rossum | 1994-09-12 | 1 | -1/+42 |
| | |||||
* | Added TERMIOS module | Guido van Rossum | 1994-09-12 | 4 | -2/+682 |
| | |||||
* | New tty/pty modules by Steen; new urlparser. | Guido van Rossum | 1994-09-12 | 3 | -0/+336 |
| | |||||
* | Add'l notes by Guido | Guido van Rossum | 1994-09-09 | 1 | -2/+59 |
| | |||||
* | * Parser/grammar1.c (finddfa): massive speed up by using direct | Guido van Rossum | 1994-09-09 | 1 | -1/+9 |
| | | | | addressing instead of searching | ||||
* | mhlib.py: delay opening of sequences file so we don't overwrite it when | Guido van Rossum | 1994-09-09 | 3 | -3/+233 |
| | | | | | | putsequences is called with a bad argument rfc822.py: better handling of dates with no or bad timezones uu.py: contributed by Lance -- uu{en,de}code |