Added the new virtual list capabilities to wxListCtrl. Other odds and ends. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11380 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
11 lines
371 B
Python
11 lines
371 B
Python
"""Provides an object representing the current "version" or "release" of
|
|
PyCrust as a whole. Individual classes, such as the shell, editor and
|
|
interpreter, each have a revision property based on the CVS $Revision$."""
|
|
|
|
__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
|
|
__cvsid__ = "$Id$"
|
|
__date__ = "July 1, 2001"
|
|
__version__ = "$Revision$"[11:-2]
|
|
|
|
version = '0.5'
|