summaryrefslogtreecommitdiffstats
path: root/Include/objimpl.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-06-07 22:50:34 (GMT)
committerGuido van Rossum <guido@python.org>1991-06-07 22:50:34 (GMT)
commit76085b95b9246d56ffcfa10b61f50bbd8da28f9c (patch)
treee111212ce6e50c57e5083439745c28a71fe88233 /Include/objimpl.h
parentd783a46d73d92e9a79ef123dc6b422568e1aad69 (diff)
downloadcpython-76085b95b9246d56ffcfa10b61f50bbd8da28f9c.zip
cpython-76085b95b9246d56ffcfa10b61f50bbd8da28f9c.tar.gz
cpython-76085b95b9246d56ffcfa10b61f50bbd8da28f9c.tar.bz2
Remove StopPrint hack
Diffstat (limited to 'Include/objimpl.h')
-rw-r--r--Include/objimpl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h
index 1cf1849..18de355 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 */