Example #1
0
def file_open(filename, group=-1, options=''):
    return ct.file_open(filename, group, options)
Example #2
0
def file_open(filename, group=-1):
    return ct.file_open(filename, group)
Example #3
0
def file_open(name, group=-1, options=''):
    if isinstance(name, (list, tuple)):
        return ct.file_open(name[0], name[1], group, options)
    else:
        return ct.file_open(name, '', group, options)
Example #4
0
def file_open(filename, group=-1):
    return ct.file_open(filename, group)
Example #5
0
def file_open(filename, group=-1, args=''):
    return ct.file_open(filename, group, args)
Example #6
0
def file_open(filename, group=-1, options=''):
    return ct.file_open(filename, group, options)