[Python-checkins] python/dist/src/Lib profile.py,1.60,1.61

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Mon Jan 10 17:48:40 CET 2005


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

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


Index: profile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/profile.py,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- profile.py	10 Jan 2005 09:07:22 -0000	1.60
+++ profile.py	10 Jan 2005 16:48:37 -0000	1.61
@@ -581,14 +581,14 @@
         help="Save stats to <outfile>", default=None)
     parser.add_option('-s', '--sort', dest="sort",
         help="Sort order when printing to stdout, based on pstats.Stats class", default=-1)
-    
+
     if not sys.argv[1:]:
         parser.print_usage()
         sys.exit(2)
-    
+
     (options, args) = parser.parse_args()
     sys.argv[:] = args
-    
+
     if (len(sys.argv) > 0):
         sys.path.insert(0, os.path.dirname(sys.argv[0]))
         run('execfile(%r)' % (sys.argv[0],), options.outfile, options.sort)



More information about the Python-checkins mailing list