Re: [SQLObject] Which version am I using?
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Simon C. <hod...@gm...> - 2009-08-21 06:41:31
|
On Fri, Aug 21, 2009 at 1:18 AM, Aaron Robinson<aar...@mo...> wrote: > As SQLObject doesn't appear to define a > "__version__", how does one tell which version one is using?? Maybe try looking at the built-in documentation? The docstring for the module contains the version number (at least in version 0.10.2). Something like: pydoc sqlobject or python -c "import sqlobject; print sqlobject.__doc__" should display it for you. Schiavo Simon |