Represents a particular version of a locale
This class does not have to deal with inheritance.
Examples:
>>> cmp(LocaleVersion('1.0', datetime(2004, 1, 1), 'no notes'), ... LocaleVersion('1.0', datetime(2004, 1, 1), 'no notes again')) 0 >>> cmp(LocaleVersion('1.0', datetime(2004, 1, 1), 'no notes'), ... LocaleVersion('1.0', datetime(2004, 1, 2), 'no notes again')) -1 >>> cmp(LocaleVersion('1.0', datetime(2004, 1, 1), 'no notes'), ... LocaleVersion('0.9', datetime(2004, 1, 2), 'no notes again')) -1 >>> cmp(LocaleVersion('1.0', datetime(2004, 1, 1), 'no notes'), ... LocaleVersion('0.9', datetime(2004, 1, 1), 'no notes again')) 1
There are no attributes in this class.
There are no methods in this class.
There are no known subclasses.