/usr/lib/python2.7/dist-packages/libavg/methodref.py is in python-libavg 1.8.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | # libavg - Media Playback Engine.
# Copyright (C) 2003-2014 Ulrich von Zadow
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Current versions can be found at www.libavg.de
import weakref, new
class methodref(object):
# From Python Cookbook
""" Wraps any callable, most importantly a bound method, in a way that allows a bound
method's object to be GC'ed, while providing the same interface as a normal weak
reference."""
def __init__(self, fn):
try:
# Try getting object, function and class
o, f, c = fn.im_self, fn.im_func, fn.im_class
except AttributeError:
# It's not a bound method
self._obj = None
self._func = fn
self._clas = None
if fn:
self.__name__ = fn.__name__
else:
self.__name__ = None
else:
# Bound method
if o is None: # ... actually UN-bound
self._obj = None
self.__name__ = f.__name__
else:
self._obj = weakref.ref(o)
self.__name__ = fn.im_class.__name__ + "." + fn.__name__
self._func = f
self._clas = c
def isSameFunc(self, func):
if self._obj is None:
return func == self._func
elif self._obj() is None:
return func is None
else:
try:
o, f, c = func.im_self, func.im_func, func.im_class
except AttributeError:
return False
else:
return (o == self._obj() and f == self._func and c == self._clas)
def __call__(self):
if self._obj is None:
return self._func
elif self._obj() is None:
return None
return new.instancemethod(self._func, self._obj(), self._clas)
|