(path)
| 300 | """.encode('utf-8')] |
| 301 | |
| 302 | def open_file(path): |
| 303 | dirname = os.path.dirname(path) |
| 304 | try: |
| 305 | os.makedirs(dirname) |
| 306 | except OSError as e: |
| 307 | if e.errno != errno.EEXIST: |
| 308 | raise |
| 309 | return open(path, 'wb') |
| 310 | |
| 311 | |
| 312 | def create_package(test_dir, source): |
no test coverage detected
searching dependent graphs…