( self, path )
| 263 | |
| 264 | ## \todo: Replace with pathlib.touch when Python 2.x support is dropped |
| 265 | def touch( self, path ) : |
| 266 | if not os.path.isdir( os.path.dirname( path ) ) : |
| 267 | os.makedirs( os.path.dirname( path ) ) |
| 268 | with open( path, "a" ) : |
| 269 | os.utime( path, None ) |
| 270 | |
| 271 | def doSequences( self, sequences ) : |
| 272 |
no outgoing calls
no test coverage detected