diff options
author | Guido van Rossum <guido@python.org> | 1992-09-25 21:59:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-09-25 21:59:05 (GMT) |
commit | 3165fe6a56c07f4f85f4ea54b69f5b1f243e2463 (patch) | |
tree | e4721159db6fc00c4267e03c035b58b73c854fd5 /Include | |
parent | 3a40ae4ef3b3dd7f2967a63acceabb0d0ae251d7 (diff) | |
download | cpython-3165fe6a56c07f4f85f4ea54b69f5b1f243e2463.zip cpython-3165fe6a56c07f4f85f4ea54b69f5b1f243e2463.tar.gz cpython-3165fe6a56c07f4f85f4ea54b69f5b1f243e2463.tar.bz2 |
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')
-rw-r--r-- | Include/ceval.h | 2 | ||||
-rw-r--r-- | Include/traceback.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index dc31255..e7281f4 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -29,7 +29,7 @@ object *call_object PROTO((object *, object *)); object *getglobals PROTO((void)); object *getlocals PROTO((void)); -void printtraceback PROTO((FILE *)); +void printtraceback PROTO((object *)); void flushline PROTO((void)); diff --git a/Include/traceback.h b/Include/traceback.h index c9fb17a..08370e3 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 *)); |