[pypy-svn] rev 1468 - pypy/trunk/doc/funding/tools

stephan at codespeak.net stephan at codespeak.net
Tue Sep 30 15:35:09 CEST 2003


Author: stephan
Date: Tue Sep 30 15:35:09 2003
New Revision: 1468

Modified:
   pypy/trunk/doc/funding/tools/format.py
Log:
removed debug prints from format.py

Modified: pypy/trunk/doc/funding/tools/format.py
==============================================================================
--- pypy/trunk/doc/funding/tools/format.py	(original)
+++ pypy/trunk/doc/funding/tools/format.py	Tue Sep 30 15:35:09 2003
@@ -116,7 +116,7 @@
     def __init__(self,*argl,**argd):
         super(replaceMargin,self).__init__(*argl,**argd)
         self.tabnames = findTableName(self.text)()
-        print >> sys.stderr,self.tabnames
+        #print >> sys.stderr,self.tabnames
         self.inStyle = True
 
     def __str__(self):
@@ -128,7 +128,7 @@
         if txt.startswith('<style:style'):
             for tab in self.tabnames:
                 if txt.find(tab) != -1 and txt.find('table-cell') != -1:
-                    print >> sys.stderr,'found table-cell'
+                    #print >> sys.stderr,'found table-cell'
                     self.inStyle = True
         self.outbuf.append(txt)
 


More information about the Pypy-commit mailing list