sources for runtest.py [rev. unknown]
1
2
3
4
5
6
def cut_pyc(f_name):
    if f_name.endswith('.pyc'):
        return f_name[:-1]
    return f_name