1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
13 def _wrapper(self, *args, **kwargs):
14 setattr(self, "__%s" % meth.__name__, meth)
16 'object.__%s(object, *args, **kwargs)' % (meth.__name__, ), globals(), locals(),
17 'profile.%d' % os.getpid())
19 functools.update_wrapper(_wrapper, meth)