|
From: <ds...@us...> - 2007-07-17 16:37:18
|
Revision: 3553
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3553&view=rev
Author: dsdale
Date: 2007-07-17 09:37:14 -0700 (Tue, 17 Jul 2007)
Log Message:
-----------
add some comments to new RcParams class
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/__init__.py
Modified: trunk/matplotlib/lib/matplotlib/__init__.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/__init__.py 2007-07-17 15:35:41 UTC (rev 3552)
+++ trunk/matplotlib/lib/matplotlib/__init__.py 2007-07-17 16:37:14 UTC (rev 3553)
@@ -531,13 +531,14 @@
class RcParams(dict):
"""A dictionary object including validation
+
+ validating functions are defined and associated with rc parameters in
+ rcsetup.py
"""
validate = dict([ (key, converter) for key, (default, converter) in \
defaultParams.iteritems() ])
- fail_on_error = False
-
def __setitem__(self, key, val):
try:
if key in _deprecated_map.keys():
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|