git.cweiske.de
/
enigma2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into obi/master
[enigma2.git]
/
lib
/
python
/
Tools
/
CList.py
1
class CList(list):
2
def __getattr__(self, attr):
3
return CList([getattr(a, attr) for a in self])
4
5
def __call__(self, *args, **kwargs):
6
for x in self:
7
x(*args, **kwargs)