[Python-checkins] python/dist/src/Tools/compiler astgen.py, 1.9, 1.10

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sun Sep 12 05:49:33 CEST 2004


Update of /cvsroot/python/python/dist/src/Tools/compiler
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2522/Tools/compiler

Modified Files:
	astgen.py 
Log Message:
Whitespace normalization.


Index: astgen.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/compiler/astgen.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- astgen.py	7 Sep 2004 15:28:01 -0000	1.9
+++ astgen.py	12 Sep 2004 03:49:31 -0000	1.10
@@ -283,4 +283,4 @@
 ### EPILOGUE
 for name, obj in globals().items():
     if isinstance(obj, type) and issubclass(obj, Node):
-       nodes[name.lower()] = obj
+        nodes[name.lower()] = obj



More information about the Python-checkins mailing list