From: <ds...@us...> - 2007-10-19 15:41:30
|
Revision: 3969 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3969&view=rev Author: dsdale Date: 2007-10-19 08:41:25 -0700 (Fri, 19 Oct 2007) Log Message: ----------- whitespace cleanup Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/__init__.py Modified: trunk/matplotlib/lib/matplotlib/__init__.py =================================================================== --- trunk/matplotlib/lib/matplotlib/__init__.py 2007-10-19 15:37:41 UTC (rev 3968) +++ trunk/matplotlib/lib/matplotlib/__init__.py 2007-10-19 15:41:25 UTC (rev 3969) @@ -149,13 +149,10 @@ # --verbose-silent or --verbose-helpful _commandLineVerbose = None - for arg in sys.argv[1:]: if not arg.startswith('--verbose-'): continue _commandLineVerbose = arg[10:] - - def __init__(self): self.set_level('silent') self.fileo = sys.stdout @@ -195,8 +192,6 @@ return True return False - - def wrap(self, fmt, func, level='helpful', always=True): """ return a callable function that wraps func and reports it @@ -225,6 +220,7 @@ verbose=Verbose() + def checkdep_dvipng(): try: stdin, stdout = os.popen4('dvipng -version') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |