From: Guido van Rossum Date: Fri, 7 Jun 1991 22:50:34 +0000 (+0000) Subject: Remove StopPrint hack X-Git-Tag: v0.9.8~897 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76085b95b9246d56ffcfa10b61f50bbd8da28f9c;p=thirdparty%2FPython%2Fcpython.git Remove StopPrint hack --- diff --git a/Include/objimpl.h b/Include/objimpl.h index 1cf1849e4015..18de355135c1 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -46,5 +46,3 @@ extern varobject *newvarobject PROTO((typeobject *, unsigned int)); #define NEWOBJ(type, typeobj) ((type *) newobject(typeobj)) #define NEWVAROBJ(type, typeobj, n) ((type *) newvarobject(typeobj, n)) - -extern int StopPrint; /* Set when printing is interrupted */