[Python-checkins] python/dist/src/Python compile.txt, 1.1.2.10, 1.1.2.11

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Apr 2 03:12:59 CEST 2005


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31124/Python

Modified Files:
      Tag: ast-branch
	compile.txt 
Log Message:
Minor spelling mistake and change an artifact in Scope section from when it was
not listing the CFG step.

Thanks Terry Reedy.


Index: compile.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/compile.txt,v
retrieving revision 1.1.2.10
retrieving revision 1.1.2.11
diff -u -d -r1.1.2.10 -r1.1.2.11
--- compile.txt	23 Mar 2005 15:51:25 -0000	1.1.2.10
+++ compile.txt	2 Apr 2005 01:12:56 -0000	1.1.2.11
@@ -44,12 +44,12 @@
 4. Emit bytecode based on the Control Flow Graph (Python/newcompile.c)
 
 Starting with Python 2.5, the above steps are now used.  This change
-was done to simplify compilation by breaking it down to two steps.
+was done to simplify compilation by breaking it into three steps.
 The purpose of this document is to outline how the lattter three steps
 of the process works.
 
 This document does not touch on how parsing works beyond what is needed
-to explain what is needed for compilation.  It is also not exahaustive
+to explain what is needed for compilation.  It is also not exhaustive
 in terms of the how the entire system works.  You will most likely need
 to read some source to have an exact understanding of all details.
 



More information about the Python-checkins mailing list