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

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Apr 2 22:14:20 CEST 2005


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

Modified Files:
      Tag: ast-branch
	compile.txt 
Log Message:
Tweak todo list:
* remove decorators
* add mention to change "generator comprehension" to "generator expression"
* mention need to explain symbol table pass in-depth


Index: compile.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/compile.txt,v
retrieving revision 1.1.2.11
retrieving revision 1.1.2.12
diff -u -d -r1.1.2.11 -r1.1.2.12
--- compile.txt	2 Apr 2005 01:12:56 -0000	1.1.2.11
+++ compile.txt	2 Apr 2005 20:14:18 -0000	1.1.2.12
@@ -446,13 +446,10 @@
 ----
 
 + Grammar support (Parser/Python.asdl, Parser/asdl_c.py)
-    - decorators
     - empty base class list (``class Class(): pass``)
 + parse tree->AST support (Python/ast.c)
-    - decorators
     - generator expressions
 + AST->bytecode support (Python/newcompile.c)
-    - decorators
     - generator expressions
 + Stdlib support
     - AST->Python access?
@@ -460,7 +457,10 @@
 + Documentation
     - flesh out this doc
 	* byte stream output
+	* explanation of how symbol table pass works
 + Universal
+    - remove "generator comprehension" mentions and change to "generator
+      expression"
     - make sure entire test suite passes
     - fix memory leaks
     - make sure return types are properly checked for errors



More information about the Python-checkins mailing list