Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | changes for keyword args to built-in functions and classes | Guido van Rossum | 1995-07-26 | 1 | -19/+43 | |
| | ||||||
* | never close the file in imp.load_... | Guido van Rossum | 1995-07-26 | 1 | -6/+0 | |
| | ||||||
* | be more suspicious of getlocals() | Guido van Rossum | 1995-07-26 | 1 | -2/+8 | |
| | ||||||
* | keyword arguments and faster calls | Guido van Rossum | 1995-07-18 | 7 | -594/+771 | |
| | ||||||
* | NT specific change for nicer error message (Mark H) | Guido van Rossum | 1995-07-18 | 1 | -3/+32 | |
| | ||||||
* | rename arglist to alist (conflict with new grammar symbol) | Guido van Rossum | 1995-07-10 | 1 | -16/+16 | |
| | ||||||
* | 3rd arg for raise; INCOMPLETE keyword parameter passing (currently ↵ | Guido van Rossum | 1995-07-07 | 2 | -52/+229 | |
| | | | | f(kw=value) is seen as f('kw', value)) | |||||
* | new MAGIC; some changes to default files for imp.load_... functions | Guido van Rossum | 1995-07-07 | 1 | -8/+19 | |
| | ||||||
* | ignore control-l (parallelling change to tokenizer.c) | Guido van Rossum | 1995-07-07 | 1 | -1/+1 | |
| | ||||||
* | added sys.platform | Guido van Rossum | 1995-07-07 | 1 | -0/+3 | |
| | ||||||
* | new grammar | Guido van Rossum | 1995-07-07 | 1 | -74/+142 | |
| | ||||||
* | added locals() and globals(); [raw_]input() uses readline() | Guido van Rossum | 1995-07-07 | 1 | -1/+67 | |
| | ||||||
* | Porting to CW CFM68K | Jack Jansen | 1995-06-27 | 3 | -2/+8 | |
| | ||||||
* | Added PY_RESOURCE (mac only) to imp module | Jack Jansen | 1995-06-18 | 1 | -0/+7 | |
| | ||||||
* | re-enabled NeXT dynamic linking (#ifdef NeXT) | Guido van Rossum | 1995-06-14 | 1 | -2/+2 | |
| | ||||||
* | Mac dynloading is now enabled by USE_MAC_DYNAMIC_LOADING. | Jack Jansen | 1995-06-14 | 1 | -11/+42 | |
| | | | | | Mac dynloading changed to allow multiple modules to live in with each other in the same file. | |||||
* | Check if we've already loaded a dynamic module under a different name. | Sjoerd Mullender | 1995-06-12 | 3 | -5/+38 | |
| | ||||||
* | OS/2 thread support | Guido van Rossum | 1995-04-10 | 1 | -0/+214 | |
| | ||||||
* | renaming phase 3 | Guido van Rossum | 1995-03-31 | 1 | -15/+15 | |
| | ||||||
* | init sys_checkinterval to 10 | Guido van Rossum | 1995-03-30 | 1 | -1/+1 | |
| | ||||||
* | flush stdout before writing to stderr in print_error() | Guido van Rossum | 1995-03-30 | 1 | -0/+1 | |
| | ||||||
* | fix dusty debugging macros | Guido van Rossum | 1995-03-29 | 2 | -3/+3 | |
| | ||||||
* | remove unused code for tp_call | Guido van Rossum | 1995-03-22 | 1 | -13/+1 | |
| | ||||||
* | fix comment about exit() | Guido van Rossum | 1995-03-20 | 1 | -1/+1 | |
| | ||||||
* | In NT, write fatal() msg to debugging device | Guido van Rossum | 1995-03-14 | 1 | -0/+10 | |
| | ||||||
* | various tuple related optimizations; remove unused b/w compat code from ceval.c | Guido van Rossum | 1995-03-09 | 2 | -83/+44 | |
| | ||||||
* | changes in NT tests | Guido van Rossum | 1995-03-09 | 1 | -2/+3 | |
| | ||||||
* | use PROTO macro around fn prototype | Guido van Rossum | 1995-03-09 | 1 | -1/+1 | |
| | ||||||
* | for BorlandC | Guido van Rossum | 1995-02-27 | 1 | -1/+5 | |
| | ||||||
* | for MPW __SC__ | Guido van Rossum | 1995-02-27 | 1 | -3/+6 | |
| | ||||||
* | add explicit 0 flags for methodlist | Guido van Rossum | 1995-02-21 | 1 | -5/+5 | |
| | ||||||
* | change ifdefs and fix "%#s" format | Guido van Rossum | 1995-02-21 | 1 | -2/+2 | |
| | ||||||
* | for __SC__ | Guido van Rossum | 1995-02-19 | 2 | -0/+80 | |
| | ||||||
* | magic number changes of CR/LF are swapped | Guido van Rossum | 1995-02-19 | 1 | -1/+3 | |
| | ||||||
* | rename macstrerror to PyMac_StrError; no EINTR test in CW | Guido van Rossum | 1995-02-18 | 1 | -8/+13 | |
| | ||||||
* | fix bogus test for negative float | Guido van Rossum | 1995-02-18 | 1 | -3/+3 | |
| | ||||||
* | ported to 68K Mac; changed suffix to .slb | Guido van Rossum | 1995-02-18 | 1 | -26/+18 | |
| | ||||||
* | hope to fix DEC Alpha gcc problems by declaring ints instead of longs | Guido van Rossum | 1995-02-17 | 1 | -9/+9 | |
| | ||||||
* | fix typo (== for =) in assignment | Guido van Rossum | 1995-02-17 | 1 | -1/+1 | |
| | ||||||
* | fix bug in try-finally with class exceptions; declare different func ↵ | Guido van Rossum | 1995-02-17 | 1 | -6/+7 | |
| | | | | pointers for different uses | |||||
* | Added hooks to support importing pyc code from a resource on the mac. | Jack Jansen | 1995-02-15 | 2 | -8/+47 | |
| | ||||||
* | call __import__() with 4 args instead of 1 | Guido van Rossum | 1995-02-14 | 2 | -2/+56 | |
| | ||||||
* | Added code to import dynamic modules using mac CFM. | Jack Jansen | 1995-02-13 | 1 | -2/+41 | |
| | ||||||
* | mac changes: | Jack Jansen | 1995-02-13 | 1 | -0/+8 | |
| | | | | | | - Assume files of types 'PYC ' and 'APPL' are compiled python code - For mwerks, show status line when program has terminated while keeping window open. | |||||
* | use Py_CHARMASK | Guido van Rossum | 1995-02-10 | 3 | -6/+15 | |
| | ||||||
* | test for float to the float power here | Guido van Rossum | 1995-02-10 | 1 | -0/+5 | |
| | ||||||
* | DECREF result of run_string | Guido van Rossum | 1995-02-07 | 1 | -2/+3 | |
| | ||||||
* | init_frozen non-static, frozenmain.c not in Makefile any more | Guido van Rossum | 1995-02-07 | 2 | -2/+4 | |
| | ||||||
* | print class name for exceptions that are classes | Guido van Rossum | 1995-02-07 | 1 | -2/+14 | |
| | ||||||
* | Under CodeWarrior, make the window go away on exit(0) | Jack Jansen | 1995-02-02 | 1 | -0/+11 | |
| |