summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* sysmodule.c: calling sys.settrace() or sys.setprofile() withoutGuido van Rossum1992-06-191-2/+2
* Removed confusing, incorrect comment.Guido van Rossum1992-06-031-1/+1
* Added new types to setattr() as well...Guido van Rossum1992-06-031-0/+52
* Added parameter decls to do_mkvalue for non-template machinesGuido van Rossum1992-05-151-1/+4
* Merged with Steve Miale's versionGuido van Rossum1992-04-131-79/+145
* Added mkvalue() functionGuido van Rossum1992-04-131-0/+127
* Test for NULL coming out of err_get() in call_exc_trace()Guido van Rossum1992-04-091-0/+4
* reverse sense of test for CHECKEXCGuido van Rossum1992-04-081-1/+1
* Arg of cmp_outcome becomes an int for portability to the MacGuido van Rossum1992-04-061-3/+3
* Don't use NULL as 0 int!Guido van Rossum1992-04-061-1/+1
* Latest gramamrGuido van Rossum1992-04-061-132/+130
* Copyright for 1992 addedGuido van Rossum1992-04-0512-12/+12
* Only * can be used for varargs argument listsGuido van Rossum1992-04-051-4/+8
* (Hopefully) fix bug in reference count in call_exc_trace()Guido van Rossum1992-04-051-12/+7
* Fix reference counts of sys_trace and sys_profileGuido van Rossum1992-04-051-3/+7
* tightened try statement syntaxGuido van Rossum1992-03-311-10/+22
* fix HUGE and MAXVAL (suggested by Tim Peters)Guido van Rossum1992-03-271-2/+2
* lintGuido van Rossum1992-03-271-2/+0
* lint (added prototypes for all static fns)Guido van Rossum1992-03-271-29/+34
* fix what lint foundGuido van Rossum1992-03-271-16/+8
* Shut up lintGuido van Rossum1992-03-271-0/+2
* Shut up lint.Guido van Rossum1992-03-271-2/+2
* Add -v option (verbose) and get rid of finaloutput() function (unused)Guido van Rossum1992-03-271-11/+8
* Print messages about where from modules are imported when -v is given.Guido van Rossum1992-03-271-2/+27
* *** empty log message ***Guido van Rossum1992-03-241-605/+703
* Added settrace() and setprofile().Guido van Rossum1992-03-231-13/+30
* New trace implementation; and profile (in a similat vein).Guido van Rossum1992-03-231-84/+109
* Totally get rid of silly '\E' escape.Guido van Rossum1992-03-121-3/+0
* Strip leading whitespace from input().Guido van Rossum1992-03-121-0/+4
* Skip leading whitespace of eval() string argument.Guido van Rossum1992-03-041-1/+7
* Set sys.last_{type,value} to characteristics of last unhandled exception.Guido van Rossum1992-03-041-0/+2
* Tighten error handling of string printing.Guido van Rossum1992-03-041-1/+5
* Move SEP to osdefs.h. Use MAXPATHLEN from osdefs.h.Guido van Rossum1992-02-261-15/+2
* Move printing of filename and lineno to tb_displayline.Guido van Rossum1992-02-261-20/+45
* Added execfile().Guido van Rossum1992-02-251-0/+37
* Use correct prototype for invert().Guido van Rossum1992-02-111-1/+1
* Get rid of comment about open().Guido van Rossum1992-02-051-1/+1
* Limit length of name passed to sprintf.Guido van Rossum1992-02-051-1/+1
* EOF in source is a SyntaxError, not an EOFError.Guido van Rossum1992-02-051-1/+1
* Get rid of "Unhandled exception: " altogether.Guido van Rossum1992-02-051-3/+0
* Added getattr and setattr built-in functions.Guido van Rossum1992-01-271-0/+36
* Don't print "Unhandled exception: " when one occurs -- just print its name.Guido van Rossum1992-01-271-0/+2
* New getargs() function: a single varargs function,Guido van Rossum1992-01-271-296/+187
* sysset(name, NULL) does nothing if sys.name is undefinedGuido van Rossum1992-01-261-2/+6
* getbinaryname is now part of dl_loadmod.Guido van Rossum1992-01-261-63/+2
* Raise SyntaxError for syntax errors detected in this phase.Guido van Rossum1992-01-261-12/+12
* Added -d option (increments debugging variable); mostly to get ridGuido van Rossum1992-01-191-3/+5
* Use strtoul() for oct/hex constants.Guido van Rossum1992-01-191-3/+11
* Support for dynamic loading added.Guido van Rossum1992-01-191-5/+132
* If sys.trace is None, don't trace. For exceptions, only useGuido van Rossum1992-01-191-6/+7