projects
/
platform
/
upstream
/
at-spi2-atk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0349a9
)
2009-04-16 Mike Gorse <mgorse@novell.com>
author
Mike Gorse
<mgorse@boston.site>
Thu, 16 Apr 2009 17:36:45 +0000
(12:36 -0500)
committer
Mike Gorse
<mgorse@boston.site>
Thu, 16 Apr 2009 17:36:45 +0000
(12:36 -0500)
* pyatspi/base.py: Derive enum from uint.
pyatspi/base.py
patch
|
blob
|
history
diff --git
a/pyatspi/base.py
b/pyatspi/base.py
index 1a7141a6c11888a1dd041f5263e3abdc376758ea..438f9e5dee7d6498ad3a15e12d1d3ecce2e30617 100644
(file)
--- a/
pyatspi/base.py
+++ b/
pyatspi/base.py
@@
-33,7
+33,7
@@
class AccessibleObjectNotAvailable(Exception):
#------------------------------------------------------------------------------
-class Enum(int):
+class Enum(
u
int):
def __str__(self):
return self._enum_lookup[int(self)]