16 lines
No EOL
247 B
Python
Executable file
16 lines
No EOL
247 B
Python
Executable file
|
|
class Fake_Database(object):
|
|
def __init__(self, dbname):
|
|
pass
|
|
|
|
def set_property(self, obj, prop, val):
|
|
pass
|
|
def set_file(self, obj, fn, val):
|
|
pass
|
|
def get_property(self, obj, prop):
|
|
pass
|
|
def get_file(self, obj, fn):
|
|
pass
|
|
|
|
|
|
|