Revision: 6750
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6750&view=rev
Author:   mdboom
Date:     2009-01-06 19:52:17 +0000 (Tue, 06 Jan 2009)

Log Message:
-----------
Make gen_rst.py quieter

Modified Paths:
--------------
    trunk/matplotlib/doc/sphinxext/gen_rst.py

Modified: trunk/matplotlib/doc/sphinxext/gen_rst.py
===================================================================
--- trunk/matplotlib/doc/sphinxext/gen_rst.py   2009-01-06 19:36:29 UTC (rev 
6749)
+++ trunk/matplotlib/doc/sphinxext/gen_rst.py   2009-01-06 19:52:17 UTC (rev 
6750)
@@ -96,7 +96,8 @@
 
 """%(subdir, subdir))
 
-        print subdir
+        sys.stdout.write(subdir + ", ")
+        sys.stdout.flush()
 
         data = datad[subdir]
         data.sort()
@@ -116,8 +117,6 @@
                 not out_of_date(fullpath, outrstfile)):
                 continue
 
-            print '    %s'%fname
-
             fh = file(outrstfile, 'w')
             fh.write('.. _%s-%s:\n\n'%(subdir, basename))
             title = '%s example code: %s'%(subdir, fname)
@@ -151,5 +150,7 @@
 
     fhindex.close()
 
+    print
+
 def setup(app):
     app.connect('builder-inited', generate_example_rst)


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to