[Matplotlib-users] obtaining version info

2006-12-08 Thread belinda thom
Hi, Perhaps I'm missing something really basic, but I can't figure out how to query pylab as to what version it is (the usual import foo, foo.__version doesn't work). Advice appreciated. --b - Take Surveys. Earn Cash.

Re: [Matplotlib-users] obtaining version info

2006-12-08 Thread Josh Lifton
I didn't see it either. For questions like this, I recommend heading to the #python channel on irc.freenode.net. If you find out how, please post. josh On Fri, 8 Dec 2006, belinda thom wrote: Hi, Perhaps I'm missing something really basic, but I can't figure out how to query pylab as to

Re: [Matplotlib-users] obtaining version info

2006-12-08 Thread Alan G Isaac
I assume there must be a reason for this:: import pylab pylab.__version__ Traceback (most recent call last): File stdin, line 1, in module AttributeError: 'module' object has no attribute '__version__' That has always bothered me. But of course you can:: import

Re: [Matplotlib-users] obtaining version info

2006-12-08 Thread Eric Firing
Alan G Isaac wrote: I assume there must be a reason for this:: import pylab pylab.__version__ Traceback (most recent call last): File stdin, line 1, in module AttributeError: 'module' object has no attribute '__version__' That has always bothered me. But of