Changeset 77 for trunk/bin/bletchley-analyze
- Timestamp:
- 04/21/15 18:51:15 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/bletchley-analyze
r46 r77 58 58 input_file = open(options.input_file, 'rb') 59 59 60 blobs = input_file.read().rstrip(b'\n').replace(b'\r', b'').split(b'\n')60 blobs = [b for b in input_file.read().rstrip(b'\n').replace(b'\r', b'').split(b'\n') if len(b) > 0] 61 61 #print(repr(blobs)) 62 62
Note: See TracChangeset
for help on using the changeset viewer.