I was looking at rc_params() and saw
if not os.path.exists(fname):
message = 'could not find rc file; returning defaults'
ret = dict([ (key, tup[0]) for key, tup in defaultParams.items()])
warnings.warn(message)
return ret
Is this correct? It seems that it re
OK, I managed to build with the setupext.py list empty as you
specified. However, for some reason, the resulting matplotlib egg
*still* looks for dynamic libraries in /usr/local:
ImportError: dlopen(/Library/Python/2.5/site-packages/
matplotlib-0.98pre-py2.5-macosx-10.5-i386.egg/matplotlib/_p
I want to create an copy of a subplot in its unique figure after being clicked
on in a figure with multiple subplots. My code seems to work but I believe is
inefficient and I'd like to understand how to use the event.* information more
effectively in mpl.
I am successfully creating multiple su