/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
html5lib
/
filters
/
Upload Filee
HOME
from __future__ import absolute_import, division, unicode_literals class Filter(object): def __init__(self, source): self.source = source def __iter__(self): return iter(self.source) def __getattr__(self, name): return getattr(self.source, name)