Changeset 764
- Timestamp:
- 12/11/06 13:33:39 (2 years ago)
- Files:
-
- pypdf/trunk/pyPdf/filters.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pypdf/trunk/pyPdf/filters.py
r733 r764 162 162 x = 0 163 163 hitEod = False 164 # remove all whitespace from data 165 data = [y for y in data if not (y in ' \n\r\t')] 164 166 while not hitEod: 165 167 c = data[x] … … 167 169 x += 2 168 170 continue 169 elif c.isspace():170 x += 1171 continue171 #elif c.isspace(): 172 # x += 1 173 # continue 172 174 elif c == 'z': 173 175 assert len(group) == 0
