Changeset 2026
- Timestamp:
- 01/12/05 15:44:27 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/pdlanalyzer.py
r2012 r2026 22 22 # 23 23 # $Log$ 24 # Revision 1.51 2005/01/12 14:44:27 jalet 25 # Fixed a fuckingly strange exception by cleverly ignoring it entirely :-) 26 # 24 27 # Revision 1.50 2005/01/07 15:53:58 jalet 25 28 # Another fix for PCL3/4/5 … … 1101 1104 try : 1102 1105 self.infile.seek(-LASTBLOCKSIZE, 2) 1106 lastblock = self.infile.read(LASTBLOCKSIZE) 1103 1107 except IOError : 1104 1108 lastblock = "" 1105 else : 1106 lastblock = self.infile.read(LASTBLOCKSIZE) 1109 1107 1110 self.infile.seek(0) 1108 1111 if self.isPostScript(firstblock, lastblock) :