~ubuntu-branches/ubuntu/gutsy/serpentine/gutsy

« back to all changes in this revision

Viewing changes to serpentine/gaw.py

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-08-16 21:15:55 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070816211555-t0h0nugk2kn1tb61
Tags: 0.9-0ubuntu1
* New upstream version
* debian/control:
  - updated XS-Python-Version value

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    default = property (lambda self: self.__default)
40
40
    name = property (lambda self: self.__name)
41
41
 
 
42
    STRING = None
 
43
    FLOAT = None
 
44
    INT = None
 
45
    BOOL = None
 
46
 
42
47
Spec.STRING = Spec ("string", gconf.VALUE_STRING, str, '')
43
48
Spec.FLOAT = Spec ("float", gconf.VALUE_FLOAT, float, 0.0)
44
49
Spec.INT = Spec ("int", gconf.VALUE_INT, int, 0)