Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | __hpux -> hpux equivalence | Guido van Rossum | 1996-01-12 | 1 | -0/+4 |
| | |||||
* | fix args options for setcheckinterval | Guido van Rossum | 1996-01-12 | 1 | -1/+1 |
| | |||||
* | changes for power (**) operator | Guido van Rossum | 1996-01-12 | 1 | -325/+359 |
| | |||||
* | changes for complex and power (**) operator | Guido van Rossum | 1996-01-12 | 2 | -30/+136 |
| | |||||
* | changes for complex numbers | Guido van Rossum | 1996-01-12 | 3 | -1/+111 |
| | |||||
* | don't return from main loop when error occurs | Guido van Rossum | 1995-12-10 | 1 | -1/+2 |
| | |||||
* | Moved mac-specific exit handling to macmain.c | Jack Jansen | 1995-10-27 | 1 | -21/+4 |
| | |||||
* | Made a bit more robust against out-of-memory situations | Jack Jansen | 1995-10-27 | 1 | -12/+35 |
| | |||||
* | Added missing include for <Aliases.h> | Jack Jansen | 1995-10-23 | 1 | -3/+1 |
| | |||||
* | set date to oct 13 | Guido van Rossum | 1995-10-12 | 1 | -1/+1 |
| | |||||
* | disable code generation for access statement | Guido van Rossum | 1995-10-08 | 1 | -0/+2 |
| | |||||
* | keep exitfunc alive while calling it | Guido van Rossum | 1995-10-07 | 1 | -0/+2 |
| | |||||
* | Removed unused variables | Jack Jansen | 1995-10-03 | 2 | -4/+1 |
| | |||||
* | fix bug with missing default for last arg (discovered by Tommy Burnette) | Guido van Rossum | 1995-09-18 | 1 | -2/+3 |
| | |||||
* | #undef argument, for the Mac | Guido van Rossum | 1995-09-18 | 1 | -0/+1 |
| | |||||
* | include Python.h | Guido van Rossum | 1995-09-18 | 2 | -0/+4 |
| | |||||
* | remove unwanted fatal() from err_badcall() | Guido van Rossum | 1995-09-18 | 1 | -1/+0 |
| | |||||
* | spell TraceBack with capital B | Guido van Rossum | 1995-09-18 | 2 | -3/+3 |
| | |||||
* | Implemented two new functions in sys: | Sjoerd Mullender | 1995-08-29 | 1 | -0/+34 |
| | | | | | | | | | | | | getcounts() returns a list of counts of allocations and deallocations for all different object types. getobjects(n [, type ]) returns a list of recently allocated and not-yet-freed objects of the given type (all objects if no type given). Only the n most recent (all if n==0) objects are returned. getcounts is only available if compiled with -DCOUNT_ALLOCS, getobjects is only available if compiled with -DTRACE_REFS. Note that everything must be compiled with these options! | ||||
* | rd_object() with exception is fatal error | Guido van Rossum | 1995-08-28 | 1 | -0/+1 |
| | |||||
* | err_badcall() is fatal error | Guido van Rossum | 1995-08-28 | 1 | -0/+1 |
| | |||||
* | Initial revision | Guido van Rossum | 1995-08-04 | 5 | -0/+75 |
| | |||||
* | empty kw dict is ok for builtins | Guido van Rossum | 1995-08-04 | 1 | -1/+6 |
| | |||||
* | split cofnfig.c in 1000 little files :-) | Guido van Rossum | 1995-08-04 | 1 | -4/+17 |
| | |||||
* | moved stuff around to resemble main.c | Guido van Rossum | 1995-08-04 | 1 | -5/+8 |
| | |||||
* | add imp.get_frozen_object() | Guido van Rossum | 1995-08-04 | 1 | -13/+54 |
| | |||||
* | avoid resize of 0-length tuple | Guido van Rossum | 1995-08-04 | 1 | -0/+5 |
| | |||||
* | mac CW-only fix for messy windows upon exit | Jack Jansen | 1995-07-29 | 1 | -1/+1 |
| | |||||
* | Allow mac user to set "command line flags" by option-starting python. | Jack Jansen | 1995-07-29 | 1 | -0/+4 |
| | |||||
* | fix bogus DECREF in finally clause | Guido van Rossum | 1995-07-28 | 1 | -0/+1 |
| | |||||
* | Undef 'argument' before including mac headers | Jack Jansen | 1995-07-28 | 1 | -0/+2 |
| | |||||
* | 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 |
| |