From: <ef...@us...> - 2010-07-05 19:40:05
|
Revision: 8495 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8495&view=rev Author: efiring Date: 2010-07-05 19:39:59 +0000 (Mon, 05 Jul 2010) Log Message: ----------- Remove experimental config subpackage using traits Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/__init__.py Removed Paths: ------------- trunk/matplotlib/lib/matplotlib/config/ Modified: trunk/matplotlib/lib/matplotlib/__init__.py =================================================================== --- trunk/matplotlib/lib/matplotlib/__init__.py 2010-07-05 19:03:09 UTC (rev 8494) +++ trunk/matplotlib/lib/matplotlib/__init__.py 2010-07-05 19:39:59 UTC (rev 8495) @@ -107,10 +107,6 @@ import distutils.sysconfig import distutils.version - -NEWCONFIG = False - - # Needed for toolkit setuptools support if 0: try: @@ -827,16 +823,6 @@ """ rcParams.update(rcParamsDefault) -if NEWCONFIG: - #print "importing from reorganized config system!" - try: - from matplotlib.config import (rcParams, rcdefaults, - mplConfig, save_config) - verbose.set_level(rcParams['verbose.level']) - verbose.set_fileo(rcParams['verbose.fileo']) - except: - from matplotlib.config import rcParams, rcdefaults - _use_error_msg = """ This call to matplotlib.use() has no effect because the the backend has already been chosen; matplotlib.use() must be called *before* pylab, matplotlib.pyplot, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |