Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Lance has converted his modules to the new naming conventions, and | Guido van Rossum | 1994-08-30 | 4 | -217/+1496 |
| | | | | | contributed a curses interface. Setup.in uses .c instead of .o now. | ||||
* | FAQ: Added lambda stress test by Ulf | Guido van Rossum | 1994-08-30 | 2 | -1/+2 |
| | | | | | ACKS: Added Ulf README: fix typo | ||||
* | Dialog.py: d.num should be numeric, not string | Guido van Rossum | 1994-08-30 | 4 | -10/+16 |
| | | | | Tkinter.py: on destroy(), remove self from master's dict of children | ||||
* | * Doc/tut.tex (subsection{Lambda Forms}): fix typo in lambda | Guido van Rossum | 1994-08-30 | 2 | -2/+2 |
| | | | | example | ||||
* | Description of what's here | Guido van Rossum | 1994-08-30 | 1 | -0/+22 |
| | |||||
* | Merge back to main trunk | Guido van Rossum | 1994-08-30 | 1 | -78/+94 |
| | |||||
* | * Modules/makesetup: bugfix: add objects from sources to OBJS | Guido van Rossum | 1994-08-30 | 1 | -0/+3 |
| | |||||
* | Merge back to main trunk | Guido van Rossum | 1994-08-30 | 37 | -826/+676 |
| | |||||
* | fix nasty bug in resizing (formatstring) | Guido van Rossum | 1994-08-30 | 1 | -18/+98 |
| | |||||
* | call_object: print message before abort() | Guido van Rossum | 1994-08-30 | 1 | -157/+144 |
| | |||||
* | Move #endif for NT | Guido van Rossum | 1994-08-29 | 1 | -1/+1 |
| | |||||
* | * Python/import.c: support *.o/*.so as alternative for | Guido van Rossum | 1994-08-29 | 1 | -68/+332 |
| | | | | | | | | | | | | | | *module.o/*module.so * Python/import.c: if initializing a module did not enter the module into sys.modules, it may have raised an exception -- don't override this exception. Merged NT changes * Python/import.c: add lost NT-specific code back in Fixed NT changes | ||||
* | Added delattr() | Guido van Rossum | 1994-08-29 | 1 | -0/+16 |
| | |||||
* | * Python/bltinmodule.c: added tuple() builtin | Guido van Rossum | 1994-08-29 | 1 | -0/+71 |
| | |||||
* | Python/bltinmodule.c: mods by Andrew Kuchling to implement | Guido van Rossum | 1994-08-29 | 1 | -5/+18 |
| | | | | pow(x,y,z) == pow(x,y)%z, but without incurring overflow | ||||
* | * Python/bltinmodule.c (builtin_vars): correct typo in error msg | Guido van Rossum | 1994-08-29 | 1 | -101/+211 |
| | |||||
* | * Python/pythonrun.c (print_error): added INCREF/DECREF pair -- | Guido van Rossum | 1994-08-29 | 1 | -82/+170 |
| | | | | | | the exception returned by a syntax error (when reported) would contain an object with refcnt zero! MPW changes | ||||
* | mods by Andrew Kuchling to implement | Guido van Rossum | 1994-08-29 | 1 | -41/+240 |
| | | | | | pow(x,y,z) == pow(x,y)%z, but without incurring overflow Correct problems found by THINK C 6.0 | ||||
* | New patches by Andrew to fix various problems | Guido van Rossum | 1994-08-29 | 1 | -33/+67 |
| | | | | Add cast for Lance | ||||
* | Correct problems found by THINK C 6.0 | Guido van Rossum | 1994-08-29 | 1 | -44/+67 |
| | |||||
* | * Parser/tokenizer.c: backup over illegal newline in string | Guido van Rossum | 1994-08-29 | 1 | -92/+119 |
| | | | | literal (for "completeness" test) | ||||
* | don't call strncpy(str, NULL, 0) | Guido van Rossum | 1994-08-29 | 1 | -81/+79 |
| | |||||
* | * Python/compile.c (com_argdefs, com_arglist): avoid referencing | Guido van Rossum | 1994-08-29 | 1 | -156/+303 |
| | | | | CHILD(n,i) for i >= NCH(n) | ||||
* | err_clear: clear interpreter stack trace | Guido van Rossum | 1994-08-29 | 1 | -40/+7 |
| | |||||
* | add function name to traceback info | Guido van Rossum | 1994-08-29 | 1 | -15/+15 |
| | | | | MPW fixes | ||||
* | Added PyArg_NoArgs(v) | Guido van Rossum | 1994-08-29 | 1 | -0/+1 |
| | |||||
* | For THINK C 6.0 | Guido van Rossum | 1994-08-29 | 1 | -6/+1 |
| | |||||
* | New way of generating .pyc files, thanks to Sjoerd. | Guido van Rossum | 1994-08-29 | 5 | -2/+96 |
| | | | | | | urllib.py: '+' is not always safe (even though the RFC says so :-( ) whrandom.py: throw away top bits of time to avoid overflow on Mac (where times can be negative) | ||||
* | Makefile.pre.in: add $(OPT) to link command | Guido van Rossum | 1994-08-29 | 5 | -105/+128 |
| | | | | | | | audioop.c: fix for MPW config.c.in: save original argc/argv for Lance rotormodule.c: new coding conventions timemodule.c: add casts for Lance | ||||
* | Makefile: add $(OPT) to linking line | Guido van Rossum | 1994-08-29 | 1 | -1/+1 |
| | | | | tokenizer.c: move tok_backup call around | ||||
* | MPW changes | Guido van Rossum | 1994-08-29 | 1 | -5/+0 |
| | |||||
* | Restructured MPW notes | Guido van Rossum | 1994-08-29 | 2 | -22/+46 |
| | |||||
* | README, Makfiles and `buildall' script to build Python under MPW 3.2. | Guido van Rossum | 1994-08-29 | 2 | -0/+78 |
| | |||||
* | Completed (hopefully) the unification of THINK 6.0 and MPW 3.2 | Guido van Rossum | 1994-08-29 | 8 | -53/+71 |
| | | | | | | | versions -- they now share config.c and config.h, and statting is always done through macstat.[ch] (THINK's <stat.h> defines funny constants). Also the configuration of stdwin is done differently: you have to define USE_STDWIN to the compiler prefix. | ||||
* | Intermediate version of changes after porting to MPW 3.2 | Guido van Rossum | 1994-08-26 | 6 | -53/+132 |
| | |||||
* | * configure.in, */Makefile*.in: OPT can now be specified in the | Guido van Rossum | 1994-08-23 | 1 | -1/+2 |
| | | | | | | env at configure time and will then be put in all Makefiles as default * */Makefile*.in: remove lib*.a before adding to it | ||||
* | The usual... | Guido van Rossum | 1994-08-23 | 4 | -127/+222 |
| | |||||
* | * Modules/Setup.*: removed all except Setup.in (huh? I thought | Guido van Rossum | 1994-08-23 | 2 | -2/+3 |
| | | | | | | | | I'd done that already?!); disable gdbm by default * configure.in, */Makefile*.in: OPT can now be specified in the env at configure time and will then be put in all Makefiles as default * */Makefile*.in: remove lib*.a before adding to it | ||||
* | * Modules/signalmodule.c: added pause(). | Guido van Rossum | 1994-08-23 | 1 | -1/+13 |
| | |||||
* | * Modules/makesetup: support C++ files now; these should be given | Guido van Rossum | 1994-08-23 | 1 | -1/+36 |
| | | | | | as file.C or file.cc or file.c++; C files can be given as file.c (instead of file.o, which is still supported) | ||||
* | * Modules/posixmodule.c: some more NT changes | Guido van Rossum | 1994-08-23 | 1 | -3/+20 |
| | |||||
* | * Modules/config.c.in: change mac specific things | Guido van Rossum | 1994-08-23 | 1 | -4/+6 |
| | |||||
* | * Parser/tokenizer.c: backup over illegal newline in string | Guido van Rossum | 1994-08-23 | 1 | -1/+2 |
| | | | | | literal (for "completeness" test) * */Makefile*.in: remove lib*.a before adding to it | ||||
* | Include/node.h: make some fields short to save space during | Guido van Rossum | 1994-08-23 | 1 | -3/+3 |
| | | | | parsing | ||||
* | Added macmain.c (separate Mac specific main prog); bump version to 1.1 | Guido van Rossum | 1994-08-23 | 3 | -2/+85 |
| | |||||
* | * Lib/linecache.py: don't crash on empty filename | Guido van Rossum | 1994-08-23 | 6 | -18/+131 |
| | | | | | | | | | | | * Lib/macpath.py: don't return trailing colon for dirname() (XXX won't do for volume names -- but otherwise glob(':*:*.py') loops forever) * Lib/traceback.py: print SyntaxError correctly * Lib/stat.py: moved to posixstat.py; added macstat.py which has the constants for the Mac; and created new stat.py which includes the right one * Lib/urllib.py: fix caching bug (by disabling the cache) | ||||
* | * Lib/sgi/flp.py: fix caching bug (always write the whole file to | Guido van Rossum | 1994-08-23 | 2 | -28/+8 |
| | | | | the cache!) | ||||
* | Some more changes | Guido van Rossum | 1994-08-23 | 5 | -22/+25 |
| | |||||
* | * Doc/libtime.tex: get rid of references to millitime() and | Guido van Rossum | 1994-08-23 | 4 | -34/+48 |
| | | | | | | | millisleep(); document clock() * Doc/ref6.tex (section{Assignment statements}): added warning about overlaps in lhs of assignment (e.g. "i, x[i] = 1, 2") | ||||
* | Description of how to build Python for the Mac. | Guido van Rossum | 1994-08-20 | 2 | -0/+324 |
| |