diff options
Diffstat (limited to 'py11')
-rw-r--r-- | py11/attributes.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py11/attributes.py b/py11/attributes.py index 7c90768..32cf940 100644 --- a/py11/attributes.py +++ b/py11/attributes.py @@ -93,3 +93,9 @@ class AttributeDB(object): template[i].pValue = create_string_buffer(v) template[i].ulValueLen = len(v) return template + + def attribute_name(self, code): + return self.db[code].name + + def attribute_code(self, name): + return self.db[name].code |