()
| 479 | """ |
| 480 | |
| 481 | def python_add_file_task(): |
| 482 | with open(sourcefile_path, "br") as infile: |
| 483 | contents = infile.read() |
| 484 | if content_postprocessors: |
| 485 | for content_postprocessor in content_postprocessors: |
| 486 | contents = content_postprocessor(contents) |
| 487 | return contents |
| 488 | |
| 489 | task = PythonTask( |
| 490 | description="Contents of {0}".format(sourcefile_path), |