projects
/
naja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of git://ctpug.org.za/naja
[naja.git]
/
naja
/
attrdict.py
1
class AttrDict(dict):
2
'''A dict with attribute access'''
3
def __getattr__(self, attr):
4
return self[attr]