summaryrefslogtreecommitdiff
path: root/Include/traceback.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-09-25 21:59:05 +0000
committerGuido van Rossum <guido@python.org>1992-09-25 21:59:05 +0000
commit60067e67684ed0abccfd0f029f46bafad990b9b2 (patch)
treee4721159db6fc00c4267e03c035b58b73c854fd5 /Include/traceback.h
parentd6eb89221a9174687f0703021be21727b77649a3 (diff)
downloadcpython-60067e67684ed0abccfd0f029f46bafad990b9b2.tar.gz
Modified most (but not yet all) I/O to always go through sys.stdout or
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.
Diffstat (limited to 'Include/traceback.h')
-rw-r--r--Include/traceback.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/traceback.h b/Include/traceback.h
index c9fb17a63e..08370e37e2 100644
--- a/Include/traceback.h
+++ b/Include/traceback.h
@@ -27,4 +27,4 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
int tb_here PROTO((struct _frame *));
object *tb_fetch PROTO((void));
int tb_store PROTO((object *));
-int tb_print PROTO((object *, FILE *));
+int tb_print PROTO((object *, object *));