<div dir="ltr">Thanks, that seems to work.<div><br></div><div>I was already getting the logger and setting the root logLevel - I thought that would</div><div>be passed through but I guess matplotlib is configured earlier in the process.</div><div><br></div><div>Cheers,</div><div>-Mike</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Mar 20, 2018 at 5:37 PM, Jody Klymak <span dir="ltr"><<a href="mailto:jklymak@uvic.ca" target="_blank">jklymak@uvic.ca</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
matplotlib now uses the standard python logging library.  You should ask `obspy` if they are setting the default debug level for other packages.<br>
<br>
But for now, something like the following in your script should quiet matplotlib down.<br>
<br>
<br>
```<br>
import logging<br>
mpl_logger = logging.getLogger(‘matplotlib’<wbr>)<br>
mpl_logger.setLevel(logging.<wbr>WARNING)<br>
<br>
```<br>
<br>
<a href="https://matplotlib.org/faq/troubleshooting_faq.html" rel="noreferrer" target="_blank">https://matplotlib.org/faq/<wbr>troubleshooting_faq.html</a><br>
<a href="https://docs.python.org/3/library/logging.html#module-logging" rel="noreferrer" target="_blank">https://docs.python.org/3/<wbr>library/logging.html#module-<wbr>logging</a><br>
<br>
<br>
Cheers,  Jody<br>
<br>
> On 20 Mar 2018, at 14:21, Mike Hagerty <<a href="mailto:m.hagerty@isti.com">m.hagerty@isti.com</a>> wrote:<br>
><br>
> I recently installed the latest version of matplotlib via conda:<br>
> # packages in environment:<br>
> matplotlib                2.2.2                    py27_0    conda-forge<br>
><br>
> Now, as soon as matplotlib is imported by another module, it generates a ton of DEBUG messages (see below).<br>
><br>
> How do I turn these off ??<br>
><br>
> Oddly, if I use the interactive python and import matplotlib directly, I don't get the messages, so it<br>
> has something to do with how the code I'm using (obspy) imports the matplotlib module.<br>
><br>
> I'm using mac osx 10.10.5 and I get similar results with python2.7 and python3.6 (conda) environments.<br>
><br>
> Any advice would be appreciated.<br>
><br>
> Cheers!<br>
> -Mike<br>
><br>
><br>
><br>
><br>
> >>> from obspy.taup import TauPyModel<br>
> [  DEBUG] $HOME=/Users/mth<br>
> [  DEBUG] matplotlib data path /usr/local/anaconda/envs/<wbr>obspy_3.6/lib/python3.6/site-<wbr>packages/matplotlib/mpl-data<br>
> [  DEBUG] loaded rc file /usr/local/anaconda/envs/<wbr>obspy_3.6/lib/python3.6/site-<wbr>packages/matplotlib/mpl-data/<wbr>matplotlibrc<br>
> [  DEBUG] matplotlib version 2.2.2<br>
> [  DEBUG] interactive is False<br>
> [  DEBUG] platform is darwin<br>
> [  DEBUG] loaded modules: ['builtins', 'sys', '_frozen_importlib', '_imp', '_warnings', '_thread', '_weakref', '_frozen_importlib_external', '_io', 'marshal', 'posix', 'zipimport', 'encodings', 'codecs', '_codecs', 'encodings.aliases', 'encodings.utf_8', '_signal', '__main__', 'encodings.latin_1', 'io', 'abc', '_weakrefset', 'site', 'os', 'errno', 'stat', '_stat', 'posixpath', 'genericpath', 'os.path', '_collections_abc', '_sitebuiltins', 'sysconfig', '_sysconfigdata_m_darwin_<wbr>darwin', '_osx_support', 're', 'enum', 'types', 'functools', '_functools', 'collections', 'operator', '_operator', 'keyword', 'heapq', '_heapq', 'itertools', 'reprlib', '_collections', 'weakref', 'collections.abc', 'sre_compile', '_sre', 'sre_parse', 'sre_constants', '_locale', 'copyreg', '_bootlocale', 'importlib', 'importlib._bootstrap', 'importlib._bootstrap_<wbr>external', 'warnings', 'importlib.util', 'importlib.abc', 'importlib.machinery', 'contextlib', 'mpl_toolkits', 'encodings.cp437', 'readline', 'atexit', 'rlcompleter', 'logging', 'time', 'traceback', 'linecache', 'tokenize', 'token', 'string', '_string', 'threading', 'lib', 'lib.libyaml', 'yaml', 'yaml.error', 'yaml.tokens', 'yaml.events', 'yaml.nodes', 'yaml.loader', 'yaml.reader', 'yaml.scanner', 'yaml.parser', 'yaml.composer', 'yaml.constructor', 'datetime', 'math', '_datetime', 'base64', 'struct', '_struct', 'binascii', 'yaml.resolver', 'yaml.dumper', 'yaml.emitter', 'yaml.serializer', 'yaml.representer', 'yaml.cyaml', '_yaml', 'lib.liblog', 'lib.process_cmd', 'getopt', 'gettext', 'locale', 'copy', 'obspy', '__future__', 'future', 'future.builtins', 'future.builtins.iterators', 'future.utils', 'numbers', 'inspect', 'ast', '_ast', 'dis', 'opcode', '_opcode', 'future.builtins.misc', 'requests', 'urllib3', 'urllib3.connectionpool', 'socket', '_socket', 'selectors', 'select', 'urllib3.exceptions', 'urllib3.packages', 'urllib3.packages.ssl_match_<wbr>hostname', 'ssl', 'ipaddress', 'textwrap', '_ssl', 'urllib3.packages.six', 'urllib3.packages.six.moves', 'http', 'http.client', 'email', 'email.parser', 'email.feedparser', 'email.errors', 'email._policybase', 'email.header', 'email.quoprimime', 'email.base64mime', 'email.charset', 'email.encoders', 'quopri', 'email.utils', 'random', 'hashlib', '_hashlib', '_blake2', '_sha3', 'bisect', '_bisect', '_random', 'urllib', 'urllib.parse', 'email._parseaddr', 'calendar', 'email.message', 'uu', 'email._encoded_words', 'email.iterators', 'urllib3.packages.six.moves.<wbr>http_client', 'queue', 'urllib3.connection', 'urllib3.util', 'urllib3.util.connection', 'urllib3.util.wait', 'urllib3.util.selectors', 'urllib3.util.request', 'urllib3.util.response', 'urllib3.util.ssl_', 'hmac', 'urllib3.util.timeout', 'urllib3.util.retry', 'urllib3.util.url', 'urllib3._collections', 'urllib3.request', 'urllib3.filepost', 'uuid', 'ctypes', '_ctypes', 'ctypes._endian', 'ctypes.util', 'shutil', 'fnmatch', 'zlib', 'bz2', '_compression', '_bz2', 'lzma', '_lzma', 'pwd', 'grp', 'subprocess', 'signal', '_posixsubprocess', 'ctypes.macholib', 'ctypes.macholib.dyld', 'ctypes.macholib.framework', 'ctypes.macholib.dylib', 'urllib3.fields', 'mimetypes', 'urllib3.packages.six.moves.<wbr>urllib', 'urllib3.packages.six.moves.<wbr>urllib.parse', 'urllib3.response', 'urllib3.poolmanager', 'chardet', 'chardet.compat', 'chardet.universaldetector', 'chardet.charsetgroupprober', 'chardet.enums', 'chardet.charsetprober', 'chardet.escprober', 'chardet.codingstatemachine', 'chardet.escsm', 'chardet.latin1prober', 'chardet.mbcsgroupprober', 'chardet.utf8prober', 'chardet.mbcssm', 'chardet.sjisprober', 'chardet.mbcharsetprober', 'chardet.chardistribution', 'chardet.euctwfreq', 'chardet.euckrfreq', 'chardet.gb2312freq', 'chardet.big5freq', 'chardet.jisfreq', 'chardet.jpcntx', 'chardet.eucjpprober', 'chardet.gb2312prober', 'chardet.euckrprober', 'chardet.cp949prober', 'chardet.big5prober', 'chardet.euctwprober', 'chardet.sbcsgroupprober', 'chardet.sbcharsetprober', 'chardet.langcyrillicmodel', 'chardet.langgreekmodel', 'chardet.langbulgarianmodel', 'chardet.langthaimodel', 'chardet.langhebrewmodel', 'chardet.hebrewprober', 'chardet.langturkishmodel', 'chardet.version', 'requests.exceptions', 'urllib3.contrib', 'urllib3.contrib.pyopenssl', 'OpenSSL', 'OpenSSL.crypto', 'six', 'cryptography', 'cryptography.__about__', 'cryptography.x509', 'cryptography.x509.<wbr>certificate_transparency', 'cryptography.x509.base', 'cryptography.utils', 'cryptography.hazmat', 'cryptography.hazmat.<wbr>primitives', 'cryptography.hazmat.<wbr>primitives.asymmetric', 'cryptography.hazmat.<wbr>primitives.asymmetric.dsa', '<a href="http://cryptography.hazmat.primitives.asymmetric.ec" rel="noreferrer" target="_blank">cryptography.hazmat.<wbr>primitives.asymmetric.ec</a>', 'cryptography.hazmat.<wbr>primitives.asymmetric.rsa', 'cryptography.exceptions', 'cryptography.hazmat.backends'<wbr>, 'cryptography.hazmat.backends.<wbr>interfaces', 'cryptography.x509.extensions'<wbr>, 'asn1crypto', 'asn1crypto.version', 'asn1crypto.keys', 'asn1crypto._elliptic_curve', 'asn1crypto._int', 'platform', 'asn1crypto.util', 'asn1crypto._errors', 'asn1crypto._iri', 'encodings.idna', 'stringprep', 'unicodedata', 'asn1crypto._types', 'asn1crypto._ordereddict', 'asn1crypto._ffi', 'asn1crypto._perf', 'asn1crypto._perf._big_num_<wbr>ctypes', 'asn1crypto.algos', 'asn1crypto.core', 'asn1crypto._teletex_codec', 'asn1crypto.parser', 'cryptography.hazmat.<wbr>primitives.constant_time', 'cryptography.hazmat.bindings'<wbr>, '_cffi_backend', '_constant_time.lib', '_constant_time', 'cryptography.hazmat.bindings.<wbr>_constant_time', 'cryptography.hazmat.<wbr>primitives.serialization', 'cryptography.x509.general_<wbr>name', 'idna', 'idna.package_data', 'idna.core', 'idna.idnadata', 'idna.intranges', 'six.moves', '<a href="http://cryptography.x509.name" rel="noreferrer" target="_blank">cryptography.x509.name</a>', 'cryptography.x509.oid', 'cryptography.hazmat.<wbr>primitives.hashes', 'OpenSSL._util', 'cryptography.hazmat.bindings.<wbr>openssl', 'cryptography.hazmat.bindings.<wbr>openssl.binding', '_openssl.lib', '_openssl', 'cryptography.hazmat.bindings.<wbr>_openssl', 'cryptography.hazmat.bindings.<wbr>openssl._conditional', 'OpenSSL.SSL', 'OpenSSL.version', 'cryptography.hazmat.backends.<wbr>openssl', 'cryptography.hazmat.backends.<wbr>openssl.backend', 'cryptography.hazmat.backends.<wbr>openssl.aead', 'cryptography.hazmat.backends.<wbr>openssl.ciphers', 'cryptography.hazmat.<wbr>primitives.ciphers', 'cryptography.hazmat.<wbr>primitives.ciphers.base', 'cryptography.hazmat.<wbr>primitives.ciphers.modes', 'cryptography.hazmat.backends.<wbr>openssl.cmac', 'cryptography.hazmat.<wbr>primitives.mac', 'cryptography.hazmat.backends.<wbr>openssl.decode_asn1', 'cryptography.hazmat.backends.<wbr>openssl.dh', 'cryptography.hazmat.<wbr>primitives.asymmetric.dh', 'cryptography.hazmat.backends.<wbr>openssl.dsa', 'cryptography.hazmat.backends.<wbr>openssl.utils', 'cryptography.hazmat.<wbr>primitives.asymmetric.utils', '<a href="http://cryptography.hazmat.backends.openssl.ec" rel="noreferrer" target="_blank">cryptography.hazmat.backends.<wbr>openssl.ec</a>', 'cryptography.hazmat.backends.<wbr>openssl.encode_asn1', 'cryptography.hazmat.backends.<wbr>openssl.hashes', 'cryptography.hazmat.backends.<wbr>openssl.hmac', 'cryptography.hazmat.backends.<wbr>openssl.rsa', 'cryptography.hazmat.<wbr>primitives.asymmetric.padding'<wbr>, 'cryptography.hazmat.backends.<wbr>openssl.x25519', 'cryptography.hazmat.<wbr>primitives.asymmetric.x25519', 'cryptography.hazmat.backends.<wbr>openssl.x509', 'cryptography.hazmat.<wbr>primitives.ciphers.algorithms'<wbr>, 'cryptography.hazmat.<wbr>primitives.kdf', 'cryptography.hazmat.<wbr>primitives.kdf.scrypt', 'urllib3.packages.backports', 'urllib3.packages.backports.<wbr>makefile', 'requests.__version__', 'requests.utils', 'cgi', 'html', 'html.entities', 'tempfile', 'requests.certs', 'certifi', 'certifi.core', 'requests._internal_utils', 'requests.compat', 'json', 'json.decoder', 'json.scanner', '_json', 'json.encoder', 'urllib.request', 'urllib.error', 'urllib.response', '_scproxy', 'http.cookiejar', 'http.cookies', 'requests.cookies', 'requests.structures', 'requests.packages', 'requests.packages.urllib3', 'requests.packages.urllib3.<wbr>connectionpool', 'requests.packages.urllib3.<wbr>exceptions', 'requests.packages.urllib3.<wbr>packages', 'requests.packages.urllib3.<wbr>packages.ssl_match_hostname', 'requests.packages.urllib3.<wbr>packages.six', 'requests.packages.urllib3.<wbr>packages.six.moves', 'requests.packages.urllib3.<wbr>packages.six.moves.http_<wbr>client', 'requests.packages.urllib3.<wbr>connection', 'requests.packages.urllib3.<wbr>util', 'requests.packages.urllib3.<wbr>util.connection', 'requests.packages.urllib3.<wbr>util.wait', 'requests.packages.urllib3.<wbr>util.selectors', 'requests.packages.urllib3.<wbr>util.request', 'requests.packages.urllib3.<wbr>util.response', 'requests.packages.urllib3.<wbr>util.ssl_', 'requests.packages.urllib3.<wbr>util.timeout', 'requests.packages.urllib3.<wbr>util.retry', 'requests.packages.urllib3.<wbr>util.url', 'requests.packages.urllib3._<wbr>collections', 'requests.packages.urllib3.<wbr>request', 'requests.packages.urllib3.<wbr>filepost', 'requests.packages.urllib3.<wbr>fields', 'requests.packages.urllib3.<wbr>packages.six.moves.urllib', 'requests.packages.urllib3.<wbr>packages.six.moves.urllib.<wbr>parse', 'requests.packages.urllib3.<wbr>response', 'requests.packages.urllib3.<wbr>poolmanager', 'requests.packages.urllib3.<wbr>contrib', 'requests.packages.urllib3.<wbr>contrib.pyopenssl', 'requests.packages.urllib3.<wbr>packages.backports', 'requests.packages.urllib3.<wbr>packages.backports.makefile', 'requests.packages.idna', 'requests.packages.idna.<wbr>package_data', 'requests.packages.idna.core', 'requests.packages.idna.<wbr>idnadata', 'requests.packages.idna.<wbr>intranges', 'requests.packages.chardet', 'requests.packages.chardet.<wbr>compat', 'requests.packages.chardet.<wbr>universaldetector', 'requests.packages.chardet.<wbr>charsetgroupprober', 'requests.packages.chardet.<wbr>enums', 'requests.packages.chardet.<wbr>charsetprober', 'requests.packages.chardet.<wbr>escprober', 'requests.packages.chardet.<wbr>codingstatemachine', 'requests.packages.chardet.<wbr>escsm', 'requests.packages.chardet.<wbr>latin1prober', 'requests.packages.chardet.<wbr>mbcsgroupprober', 'requests.packages.chardet.<wbr>utf8prober', 'requests.packages.chardet.<wbr>mbcssm', 'requests.packages.chardet.<wbr>sjisprober', 'requests.packages.chardet.<wbr>mbcharsetprober', 'requests.packages.chardet.<wbr>chardistribution', 'requests.packages.chardet.<wbr>euctwfreq', 'requests.packages.chardet.<wbr>euckrfreq', 'requests.packages.chardet.<wbr>gb2312freq', 'requests.packages.chardet.<wbr>big5freq', 'requests.packages.chardet.<wbr>jisfreq', 'requests.packages.chardet.<wbr>jpcntx', 'requests.packages.chardet.<wbr>eucjpprober', 'requests.packages.chardet.<wbr>gb2312prober', 'requests.packages.chardet.<wbr>euckrprober', 'requests.packages.chardet.<wbr>cp949prober', 'requests.packages.chardet.<wbr>big5prober', 'requests.packages.chardet.<wbr>euctwprober', 'requests.packages.chardet.<wbr>sbcsgroupprober', 'requests.packages.chardet.<wbr>sbcharsetprober', 'requests.packages.chardet.<wbr>langcyrillicmodel', 'requests.packages.chardet.<wbr>langgreekmodel', 'requests.packages.chardet.<wbr>langbulgarianmodel', 'requests.packages.chardet.<wbr>langthaimodel', 'requests.packages.chardet.<wbr>langhebrewmodel', 'requests.packages.chardet.<wbr>hebrewprober', 'requests.packages.chardet.<wbr>langturkishmodel', 'requests.packages.chardet.<wbr>version', 'requests.models', 'requests.hooks', 'requests.auth', 'requests.status_codes', 'requests.api', 'requests.sessions', 'requests.adapters', 'urllib3.contrib.socks', 'socks', 'obspy.core', 'obspy.core.utcdatetime', 'obspy.core.util', 'obspy.core.util.attribdict', 'obspy.core.util.base', 'doctest', 'argparse', 'difflib', 'pdb', 'cmd', 'bdb', 'code', 'codeop', 'glob', 'pprint', 'unittest', 'unittest.result', 'unittest.util', 'unittest.case', 'unittest.suite', 'unittest.loader', 'unittest.main', 'unittest.runner', 'unittest.signals', 'numpy', 'numpy._globals', 'numpy.__config__', 'numpy.version', 'numpy._import_tools', 'numpy.add_newdocs', 'numpy.lib', '<a href="http://numpy.lib.info" rel="noreferrer" target="_blank">numpy.lib.info</a>', 'numpy.lib.type_check', 'numpy.core', '<a href="http://numpy.core.info" rel="noreferrer" target="_blank">numpy.core.info</a>', 'numpy.core.multiarray', 'numpy.core.umath', 'numpy.core._internal', 'numpy.compat', 'numpy.compat._inspect', 'numpy.compat.py3k', 'pathlib', 'ntpath', 'numpy.core.numerictypes', 'numpy.core.numeric', 'pickle', '_compat_pickle', '_pickle', 'numpy.core.fromnumeric', 'numpy.core._methods', 'numpy.core.arrayprint', 'numpy.core.defchararray', 'numpy.core.records', 'numpy.core.memmap', 'numpy.core.function_base', 'numpy.core.machar', 'numpy.core.getlimits', 'numpy.core.shape_base', 'numpy.core.einsumfunc', 'numpy.testing', 'numpy.testing.decorators', 'numpy.testing.nose_tools', 'numpy.testing.nose_tools.<wbr>decorators', 'numpy.testing.nose_tools.<wbr>utils', 'numpy.lib.utils', 'numpy.testing.nosetester', 'numpy.testing.nose_tools.<wbr>nosetester', 'numpy.testing.utils', 'numpy.lib.ufunclike', 'numpy.lib.index_tricks', 'numpy.lib.function_base', 'numpy.lib.twodim_base', 'numpy.matrixlib', 'numpy.matrixlib.defmatrix', 'numpy.lib.stride_tricks', 'numpy.lib.mixins', 'numpy.lib.nanfunctions', 'numpy.lib.shape_base', 'numpy.lib.scimath', 'numpy.lib.polynomial', 'numpy.linalg', '<a href="http://numpy.linalg.info" rel="noreferrer" target="_blank">numpy.linalg.info</a>', 'numpy.linalg.linalg', 'numpy.linalg.lapack_lite', 'numpy.linalg._umath_linalg', 'numpy.lib.arraysetops', 'numpy.lib.npyio', 'numpy.lib.format', 'numpy.lib._datasource', 'numpy.lib._iotools', 'numpy.lib.financial', 'decimal', '_decimal', 'numpy.lib.arrayterator', 'numpy.lib.arraypad', 'numpy.lib._version', 'numpy._distributor_init', 'numpy._mklinit', 'numpy.fft', '<a href="http://numpy.fft.info" rel="noreferrer" target="_blank">numpy.fft.info</a>', 'numpy.fft.fftpack', 'numpy.fft.fftpack_lite', 'numpy.fft.helper', 'numpy.polynomial', 'numpy.polynomial.polynomial', 'numpy.polynomial.polyutils', 'numpy.polynomial._polybase', 'numpy.polynomial.chebyshev', 'numpy.polynomial.legendre', 'numpy.polynomial.hermite', 'numpy.polynomial.hermite_e', 'numpy.polynomial.laguerre', 'numpy.random', '<a href="http://numpy.random.info" rel="noreferrer" target="_blank">numpy.random.info</a>', 'cython_runtime', 'mtrand', 'numpy.random.mtrand', 'numpy.ctypeslib', '<a href="http://numpy.ma" rel="noreferrer" target="_blank">numpy.ma</a>', 'numpy.ma.core', 'numpy.ma.extras', 'pkg_resources', 'zipfile', 'pkgutil', 'plistlib', 'xml', 'xml.parsers', 'xml.parsers.expat', 'pyexpat.errors', 'pyexpat.model', 'pyexpat', 'xml.parsers.expat.model', 'xml.parsers.expat.errors', 'pkg_resources.extern', 'pkg_resources._vendor', 'pkg_resources.extern.six', 'pkg_resources._vendor.six', 'pkg_resources.extern.six.<wbr>moves', 'pkg_resources._vendor.six.<wbr>moves', 'pkg_resources.py31compat', 'pkg_resources.extern.appdirs'<wbr>, 'pkg_resources._vendor.<wbr>packaging.__about__', 'pkg_resources.extern.<wbr>packaging', 'pkg_resources.extern.<wbr>packaging.version', 'pkg_resources.extern.<wbr>packaging._structures', 'pkg_resources.extern.<wbr>packaging.specifiers', 'pkg_resources.extern.<wbr>packaging._compat', 'pkg_resources.extern.<wbr>packaging.requirements', 'pkg_resources.extern.<wbr>pyparsing', 'pkg_resources.extern.six.<wbr>moves.urllib', 'pkg_resources.extern.<wbr>packaging.markers', 'obspy.core.util.misc', 'obspy.core.util.obspy_types', 'obspy.core.util.testing', 'distutils', 'distutils.version', 'lxml', '_cython_0_28', 'lxml.etree', 'lxml._elementpath', 'gzip', 'obspy.core.util.version', 'obspy.core.trace', 'decorator', 'obspy.core.compatibility', 'unittest.mock', 'configparser', 'obspy.core.util.decorator', 'tarfile', 'obspy.core.util.deprecation_<wbr>helpers', 'obspy.core.stream', 'obspy.scripts', 'obspy.scripts.runtests', 'obspy.core.event', 'obspy.core.event.base', 'obspy.core.event.header', 'obspy.core.event.catalog', 'obspy.imaging', '<a href="http://obspy.imaging.cm" rel="noreferrer" target="_blank">obspy.imaging.cm</a>', 'matplotlib', 'distutils.sysconfig', 'distutils.errors', 'matplotlib.cbook', 'matplotlib.cbook.deprecation'<wbr>, 'matplotlib.cbook._backports', 'matplotlib.compat', 'matplotlib.compat.subprocess'<wbr>, 'matplotlib.rcsetup', 'matplotlib.testing', 'matplotlib.fontconfig_<wbr>pattern', 'pyparsing', 'matplotlib.colors', 'matplotlib._color_data', 'cycler', 'six.moves.urllib', 'six.moves.urllib.request', 'matplotlib._version', 'dateutil', 'dateutil._version']<br>
> [  DEBUG] CACHEDIR=/Users/mth/.<wbr>matplotlib<br>
> [  DEBUG] Using fontManager instance from /Users/mth/.matplotlib/<wbr>fontList.json<br>
><br>
> ______________________________<wbr>_________________<br>
> Matplotlib-users mailing list<br>
> <a href="mailto:Matplotlib-users@python.org">Matplotlib-users@python.org</a><br>
> <a href="https://mail.python.org/mailman/listinfo/matplotlib-users" rel="noreferrer" target="_blank">https://mail.python.org/<wbr>mailman/listinfo/matplotlib-<wbr>users</a><br>
<br>
--<br>
Jody Klymak<br>
<a href="http://web.uvic.ca/~jklymak/" rel="noreferrer" target="_blank">http://web.uvic.ca/~jklymak/</a><br>
<br>
<br>
<br>
<br>
<br>
</blockquote></div><br></div>