summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* long_format() is now declared in longobject.h.Guido van Rossum1992-01-191-5/+2
* tb_here() can now get the lasti and lineno arguments from the frame.Guido van Rossum1992-01-141-4/+2
* Ensure that sys.argv[0] always exists (maybe as empty string).Guido van Rossum1992-01-141-2/+6
* New version from the net.Guido van Rossum1992-01-141-17/+149
* Don't depend on patchlevel.h.Guido van Rossum1992-01-141-2/+0
* Added varargs code.Guido van Rossum1992-01-141-9/+28
* Added UNPACK_VARARG code.Guido van Rossum1992-01-141-0/+36
* add READONLY to member list.Guido van Rossum1992-01-121-4/+4
* User trace feature.Guido van Rossum1992-01-121-27/+162
* Fix bug in assign_slice for negative index; used length of wrong object!Guido van Rossum1992-01-101-1/+1
* Stop option processing immediately after "-c command",Guido van Rossum1992-01-021-12/+13
* Raise SystemExit instead of calling goaway().Guido van Rossum1991-12-311-6/+3