summaryrefslogtreecommitdiff
path: root/_clean_tables.py
blob: 48417b0d61c53457021bb449b0056bc2c73bc3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Cleanup all table and PYC files to ensure no PLY stuff is cached
#
import fnmatch
import os, shutil

file_patterns = ('yacctab.*', 'lextab.*', '*.pyc')

def do_cleanup(root):
    for path, dirs, files in os.walk(root):
        for file in files:
            try:
                for pattern in file_patterns:
                    if fnmatch.fnmatch(file, pattern):
                        fullpath = os.path.join(path, file)
                        os.remove(fullpath)
                        print 'Deleted', fullpath
            except OSError:
                pass

if __name__ == "__main__":
    do_cleanup('.')