(folder)
| 26 | fout.write (newContent) |
| 27 | |
| 28 | def stripfolder(folder): |
| 29 | print ("Checking " + folder) |
| 30 | for root, dirs, files in os.walk (folder): |
| 31 | for file in files: |
| 32 | if (file.endswith (".cpp") or file.endswith (".h")): |
| 33 | stripfile (os.path.join(root, file)) |
| 34 | |
| 35 | stripfolder (os.path.dirname (os.path.realpath(__file__))) |
no test coverage detected