[Python-checkins] python/dist/src/Lib compileall.py,1.15,1.16

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sun Jun 20 16:59:58 EDT 2004


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

Modified Files:
	compileall.py 
Log Message:
Patch #975885: print file name in err msg in quiet mode


Index: compileall.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/compileall.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** compileall.py	27 Aug 2003 20:19:35 -0000	1.15
--- compileall.py	20 Jun 2004 20:59:56 -0000	1.16
***************
*** 67,70 ****
--- 67,72 ----
                      raise KeyboardInterrupt
                  except py_compile.PyCompileError,err:
+                     if quiet:
+                         print 'Compiling', fullname, '...'
                      print err.msg
                      success = 0




More information about the Python-checkins mailing list