- Timestamp:
- 12/16/04 16:11:00 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/pdlanalyzer.py
r1982 r1987 22 22 # 23 23 # $Log$ 24 # Revision 1.48 2004/12/16 15:11:00 jalet 25 # Added some debugging code to PCL3/4/5 parser 26 # 24 27 # Revision 1.47 2004/12/13 20:49:53 jalet 25 28 # Bad typo … … 559 562 # PCL files with this. If resets < 2, then the file is 560 563 # probably not a valid PCL file, so we use 0 564 565 if self.debug : 566 sys.stderr.write("pagecount : %s\n" % pagecount) 567 sys.stderr.write("resets : %s\n" % resets) 568 sys.stderr.write("ejects : %s\n" % ejects) 569 sys.stderr.write("backsides : %s\n" % backsides) 570 sys.stderr.write("startgfx : %s\n" % startgfx) 571 sys.stderr.write("endgfx : %s\n" % endgfx) 572 561 573 if not pagecount : 562 574 pagecount = (pagecount or ((resets - 3) * (resets > 2)))