( self, path )
| 474 | |
| 475 | ## \todo: Replace with pathlib.touch when Python 2.x support is dropped |
| 476 | def touch( self, path ) : |
| 477 | if not os.path.isdir( os.path.dirname( path ) ) : |
| 478 | os.makedirs( os.path.dirname( path ) ) |
| 479 | with open( path, "a" ) : |
| 480 | os.utime( path, None ) |
| 481 | |
| 482 | def test( self ) : |
| 483 |
no outgoing calls
no test coverage detected