(file_path)
| 13 | |
| 14 | |
| 15 | def modification_date(file_path): |
| 16 | time_string = time.ctime(os.path.getmtime(file_path)) |
| 17 | return datetime.datetime.strptime(time_string, "%a %b %d %H:%M:%S %Y") |
| 18 | |
| 19 | |
| 20 | def deletion_date(file_path): |
no outgoing calls
no test coverage detected