Changeset 737
- Timestamp:
- 06/06/06 10:12:30 (2 years ago)
- Files:
-
- pypdf/trunk/pyPdf/pdf.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pypdf/trunk/pyPdf/pdf.py
r736 r737 371 371 self.xref[generation] = {} 372 372 if self.xref[generation].has_key(num): 373 "It really seems like we should allow the last"374 "xref table in the file to override previous"375 "ones. Since we read the file backwards, assume"376 "any existing key is already set correctly."373 # It really seems like we should allow the last 374 # xref table in the file to override previous 375 # ones. Since we read the file backwards, assume 376 # any existing key is already set correctly. 377 377 pass 378 378 else: … … 384 384 trailertag = stream.read(7) 385 385 if trailertag != "trailer": 386 "more xrefs!"386 # more xrefs! 387 387 stream.seek(-7, 1) 388 388 else:
