[Python-checkins] python/dist/src/Lib cgitb.py, 1.17, 1.18 pydoc.py, 1.107, 1.108

jhylton@users.sourceforge.net jhylton at users.sourceforge.net
Thu Oct 20 21:59:27 CEST 2005


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

Modified Files:
	cgitb.py pydoc.py 
Log Message:
Merge ast-branch to head

This change implements a new bytecode compiler, based on a
transformation of the parse tree to an abstract syntax defined in
Parser/Python.asdl.

The compiler implementation is not complete, but it is in stable
enough shape to run the entire test suite excepting two disabled
tests. 



Index: cgitb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/cgitb.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- cgitb.py	26 Jun 2005 21:57:55 -0000	1.17
+++ cgitb.py	20 Oct 2005 19:59:24 -0000	1.18
@@ -22,6 +22,7 @@
 """
 
 __author__ = 'Ka-Ping Yee'
+
 __version__ = '$Revision$'
 
 import sys

Index: pydoc.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pydoc.py,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -d -r1.107 -r1.108
--- pydoc.py	1 Oct 2005 16:32:31 -0000	1.107
+++ pydoc.py	20 Oct 2005 19:59:24 -0000	1.108
@@ -36,6 +36,7 @@
 
 __author__ = "Ka-Ping Yee <ping at lfw.org>"
 __date__ = "26 February 2001"
+
 __version__ = "$Revision$"
 __credits__ = """Guido van Rossum, for an excellent programming language.
 Tommy Burnette, the original creator of manpy.



More information about the Python-checkins mailing list