Show
Ignore:
Timestamp:
09/05/06 23:44:49 (18 years ago)
Author:
jerome
Message:

Code cleanups.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pkpgcounter/trunk/pkpgpdls/escp2.py

    r357 r387  
    3131    """A parser for ESC/P2 documents.""" 
    3232    def isValid(self) :         
    33         """Returns 1 if data is ESC/P2, else 0.""" 
     33        """Returns True if data is ESC/P2, else False.""" 
    3434        if self.firstblock.startswith("\033@") or \ 
    3535           self.firstblock.startswith("\033*") or \ 
     
    3737           self.firstblock.startswith("\0\0\0\033\1@EJL") : # ESC/P Raster ??? Seen on Stylus Photo 1284 
    3838            self.logdebug("DEBUG: Input file is in the ESC/P2 format.") 
    39             return 1 
     39            return True 
    4040        else :     
    41             return 0 
     41            return False 
    4242             
    4343    def getJobSize(self) :