summaryrefslogtreecommitdiffstats
path: root/Python/traceback.c
Commit message (Collapse)AuthorAgeFilesLines
...
* * mpzmodule.c: cast some methods to the proper type.Guido van Rossum1993-12-171-5/+23
| | | | | | | * traceback.c (tb_print): use sys.tracebacklimit as a maximum number of traceback entries to print (default 1000). * ceval.c (printtraceback): Don't print stack trace header -- this is now done by tb_print().
* * Changed all copyright messages to include 1993.Guido van Rossum1993-03-291-2/+2
| | | | | | | | | | | | | | | | | * Stubs for faster implementation of local variables (not yet finished) * Added function name to code object. Print it for code and function objects. THIS MAKES THE .PYC FILE FORMAT INCOMPATIBLE (the version number has changed accordingly) * Print address of self for built-in methods * New internal functions getattro and setattro (getattr/setattr with string object arg) * Replaced "dictobject" with more powerful "mappingobject" * New per-type functio tp_hash to implement arbitrary object hashing, and hashobject() to interface to it * Added built-in functions hash(v) and hasattr(v, 'name') * classobject: made some functions static that accidentally weren't; added __hash__ special instance method to implement hash() * Added proper comparison for built-in methods and functions
* Modified most (but not yet all) I/O to always go through sys.stdout orGuido van Rossum1992-09-251-16/+19
| | | | | | sys.stderr or sys.stdin, and to work with any object as long as it has a write() (respectively readline()) methods. Some functions that took a FILE* argument now take an object* argument.
* Copyright for 1992 addedGuido van Rossum1992-04-051-1/+1
|
* Move printing of filename and lineno to tb_displayline.Guido van Rossum1992-02-261-20/+45
| | | | | Search sys.path if the filename isn't found. Include osdefs.h.
* tb_here() can now get the lasti and lineno arguments from the frame.Guido van Rossum1992-01-141-4/+2
|
* Don't use printobject() to print a string (filename).Guido van Rossum1991-06-241-7/+10
| | | | Print ';' instead of ',' between file and line for MPW.
* printobject now returns an error codeGuido van Rossum1991-06-071-4/+6
|
* Added copyright notice.Guido van Rossum1991-02-191-0/+24
|
* "Compiling" versionGuido van Rossum1990-12-201-0/+193