( file_name )
| 15 | |
| 16 | # Print the header from an external file |
| 17 | def printfile( file_name ): |
| 18 | file = open( file_name , "r") |
| 19 | for line in file.readlines(): |
| 20 | print line |
| 21 | file.close(); |
| 22 | |
| 23 | # define a function for the message entry |
| 24 | # entry == the form dictionary |
no test coverage detected