zaz-easymacro/source/pythonpath/libo.py

30 lines
489 B
Python

#!/usr/bin/env python3
from net.elmau.zaz.EasyMacro import XDebug
import easymacro as app
class Debug(XDebug):
def info(self, message):
app.info(message)
return
def debug(self, message):
app.debug(message)
return
def error(self, message):
app.error(message)
return
def inspect(self, obj):
app.inspect(obj)
return
class LIBO(Debug):
OS = app.OS
USER = app.USER
INFO_DEBUG = app.INFO_DEBUG