Lots of small things, see ChangeLog
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 *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 @@
 	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