(filename)
| 176 | |
| 177 | @staticmethod |
| 178 | def readFile(filename): |
| 179 | data = "" |
| 180 | with open(filename, "rb") as f: |
| 181 | data = f.read() |
| 182 | return data |
| 183 | |
| 184 | @staticmethod |
| 185 | def readFileChunks(filename, chunknum, chunksize=10000): |
nothing calls this directly
no outgoing calls
no test coverage detected