/usr/share/openxenmanager/oxm.py is in openxenmanager 0.r80+dfsg-4.
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 | # TODO: this will be the future entry-point
import pygtk
import gobject
def idle(func):
return lambda *args, **kwargs: gobject.idle_add(lambda: func(*args, **kwargs) and False)
|