from contextlib import ContextDecorator class makeparagraph(ContextDecorator): def __enter__(self): print('

') return self def __exit__(self, *exc): print('

') return False @makeparagraph() def emit_html(): print('Here is some non-HTML') emit_html()