0
0

More than 3 years have passed since last update.

contextlib.ContextDecorator

Posted at
import contextlib


# @contextlib.contextmanager
# def tag(name):
#     print('<{}>'.format(name))
#     yield
#     print('</{}>'.format(name))

class tag(contextlib.ContextDecorator):
    def __init__(self, name):
        self.name = name
        self.start_tag = '<{}>'.format(name)
        self.end_tag = '</{}>'.format(name)

    def __enter__(self):
        print(self.start_tag)

    def __exit__(self, exc_type, exc_val, exc_tb):
        print(exc_type)
        print(exc_val)
        print(exc_tb)
        print(self.end_tag)


with tag('h2'):
    raise Exception('error')
    print('test')

実行結果:

h2>
<class 'Exception'>
error
<traceback object at 0x7fa12715e0f0>
</h2>
Traceback (most recent call last):
  File "/Users/hamazakiisao/PycharmProjects/python_programming/lesson.py", line 27, in <module>
    raise Exception('error')
Exception: error
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0