Changeset 1588
- Timestamp:
- 07/03/04 10:22:00 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 4 added
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/MANIFEST.in
r1504 r1588 12 12 recursive-include stylesheets README *.css 13 13 recursive-include openoffice README *.png *.sxw *.sxc *.pdf 14 recursive-include tests README *.ps *.sh -
pykota/trunk/NEWS
r1584 r1588 24 24 - 1.19alpha29 : 25 25 26 - Added testsuite for generic PDL analyzer. 27 28 - Typo fixed in PCLXL parser. 29 26 30 - Correctly dispatches error messages depending on the 27 31 situation : tools which can be run interactively will -
pykota/trunk/pykota/pdlanalyzer.py
r1580 r1588 22 22 # 23 23 # $Log$ 24 # Revision 1.23 2004/07/03 08:21:59 jalet 25 # Testsuite for PDL Analyzer added 26 # 24 27 # Revision 1.22 2004/06/29 14:21:41 jalet 25 28 # Smallish optimization … … 414 417 pos4 = pos + 4 415 418 self.pos = pos4 416 return unpack(self. indianness + "I", self.minfile[pos:pos4])[0]419 return unpack(self.endianness + "I", self.minfile[pos:pos4])[0] 417 420 418 421 def littleEndian(self) :