10 lines
No EOL
165 B
Python
Executable file
10 lines
No EOL
165 B
Python
Executable file
|
|
class builtin_functions(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
@staticmethod
|
|
def serverlog(vm, args):
|
|
print "serverlog: %s" % (args,)
|
|
|
|
bi = builtin_functions() |