2003-11-12 16:34:20 -05:00
|
|
|
"""Provides an object representing the current 'version' or 'release'
|
|
|
|
of Py as a whole. Individual classes, such as the shell, filling and
|
|
|
|
interpreter, each have a revision property based on the CVS Revision."""
|
2003-07-02 19:13:10 -04:00
|
|
|
|
2003-11-12 16:34:20 -05:00
|
|
|
__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
|
|
|
|
__cvsid__ = "$Id$"
|
|
|
|
__revision__ = "$Revision$"[11:-2]
|
2003-07-02 19:13:10 -04:00
|
|
|
|
2005-12-30 18:02:03 -05:00
|
|
|
VERSION = '0.9.5'
|