@header@
 
 
matplotlib.rcsetup
index
/home/jdhunter/dev/lib64/python2.5/site-packages/matplotlib/rcsetup.py

The rcsetup module contains the default values and the validation code for
customization using matplotlib's rc settings.
 
Each rc setting is assigned a default value and a function used to validate any
attempted changes to that setting. The default values and validation functions
are defined in the rcsetup module, and are used to construct the rcParams global
object which stores the settings and is referenced throughout matplotlib.
 
These default values should be consistent with the default matplotlibrc file
that actually reflects the values given here. Any additions or deletions to the
parameter set listed here should also be visited to the
:file:`matplotlibrc.template` in matplotlib's root source directory.

 
Modules
       
os
warnings

 
Classes
       
ValidateInStrings
ValidateInterval
validate_nseq_float
validate_nseq_int

 
class ValidateInStrings
     Methods defined here:
__call__(self, s)
__init__(self, key, valid, ignorecase=False)
valid is a list of legal strings

 
class ValidateInterval
    Value must be in interval
 
  Methods defined here:
__call__(self, s)
__init__(self, vmin, vmax, closedmin=True, closedmax=True)

 
class validate_nseq_float
     Methods defined here:
__call__(self, s)
return a seq of n floats or raise
__init__(self, n)

 
class validate_nseq_int
     Methods defined here:
__call__(self, s)
return a seq of n ints or raise
__init__(self, n)

 
Functions
       
validate_aspect(s)
validate_autolayout(v)
validate_bool(b)
Convert b to a boolean or raise
validate_bool_maybe_none(b)
Convert b to a boolean or raise
validate_color(s)
return a valid color arg
validate_float(s)
convert s to float or raise
validate_font_properties(s)
validate_fontsize(s)
validate_fonttype(s)
confirm that this is a Postscript of PDF font type that we know how to convert to
validate_int(s)
convert s to int or raise
validate_negative_linestyle_legacy(s)
validate_path_exists(s)
If s is a path, return s, else False
validate_ps_distiller(s)
validate_stringlist(s)
return a list

 
Data
        all_backends = ['GTK', 'GTKAgg', 'GTKCairo', 'FltkAgg', 'QtAgg', 'Qt4Agg', 'TkAgg', 'WX', 'WXAgg', 'CocoaAgg', 'agg', 'cairo', 'emf', 'gdk', 'pdf', 'ps', 'svg', 'template']
defaultParams = {'axes.axisbelow': [False, <function validate_bool at 0x1c00848>], 'axes.edgecolor': ['k', <function validate_color at 0x1c108c0>], 'axes.facecolor': ['w', <function validate_color at 0x1c108c0>], 'axes.formatter.limits': [[-7, 7], <matplotlib.rcsetup.validate_nseq_int instance at 0x7f2c5a5272d8>], 'axes.grid': [False, <function validate_bool at 0x1c00848>], 'axes.hold': [True, <function validate_bool at 0x1c00848>], 'axes.labelcolor': ['k', <function validate_color at 0x1c108c0>], 'axes.labelsize': ['medium', <function validate_fontsize at 0x7f2c5a524488>], 'axes.linewidth': [1.0, <function validate_float at 0x1c0c320>], 'axes.titlesize': ['large', <function validate_fontsize at 0x7f2c5a524488>], ...}
interactive_bk = ['GTK', 'GTKAgg', 'GTKCairo', 'FltkAgg', 'QtAgg', 'Qt4Agg', 'TkAgg', 'WX', 'WXAgg', 'CocoaAgg']
non_interactive_bk = ['agg', 'cairo', 'emf', 'gdk', 'pdf', 'ps', 'svg', 'template']
validate_backend = <matplotlib.rcsetup.ValidateInStrings instance at 0x1d437e8>
validate_cairo_format = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523cb0>
validate_capstyle = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523d88>
validate_fontset = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523c20>
validate_joinstyle = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523d40>
validate_legend_loc = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523e18>
validate_negative_linestyle = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523dd0>
validate_numerix = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523bd8>
validate_orientation = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523b00>
validate_ps_papersize = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523cf8>
validate_toolbar = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523b48>
validate_verbose = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523c68>
@footer@