local.py 147 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 # -*- coding: utf-8 -*- # from werkzeug.local import Local thread_local = Local() def _find(attr): return getattr(thread_local, attr, None)