Exemplo n.º 1
0
def find_exposed_functions(data):
    data = regex_longcomments.sub('', data)
    return regex_expose.findall(data)
Exemplo n.º 2
0
def find_exposed_functions(data):
    data = regex_longcomments.sub('',data)
    return regex_expose.findall(data)
Exemplo n.º 3
0
def find_exposed_functions(dt):
    dt = regex_longcomments.sub('', dt)
    return regex_expose.findall(dt)