summaryrefslogtreecommitdiffstats
path: root/Include/ceval.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-12-30 15:33:50 (GMT)
committerGuido van Rossum <guido@python.org>1994-12-30 15:33:50 (GMT)
commit66cb311fba7e824f11964090bce8b6b91f00d2e4 (patch)
treeec10c17a1a9e8b7526e8cd8f73578e269cc50740 /Include/ceval.h
parent31b7727bad6ba50feaf597a823c41c1a923e7855 (diff)
downloadcpython-66cb311fba7e824f11964090bce8b6b91f00d2e4.zip
cpython-66cb311fba7e824f11964090bce8b6b91f00d2e4.tar.gz
cpython-66cb311fba7e824f11964090bce8b6b91f00d2e4.tar.bz2
Lots of small things, see ChangeLog
Diffstat (limited to 'Include/ceval.h')
-rw-r--r--Include/ceval.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index 7002dd4..8de2fc0 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -37,7 +37,6 @@ object *getlocals PROTO((void));
object *getowner PROTO((void));
object *getframe PROTO((void));
-void printtraceback PROTO((object *));
void flushline PROTO((void));
int Py_AddPendingCall PROTO((int (*func) PROTO((ANY *)), ANY *arg));
@@ -54,7 +53,7 @@ int Py_MakePendingCalls PROTO((void));
BGN_SAVE
...blocking system call here...
END_SAVE
- ...interpretr result here...
+ ...interpret result here...
The BGN_SAVE/END_SAVE pair expands to a {}-surrounded block.
To leave the block in the middle (e.g., with return), you must insert