Show
Ignore:
Timestamp:
09/15/06 00:47:46 (18 years ago)
Author:
jerome
Message:

Moved the test() function elsewhere, so that it is present only
once in the code.

Files:
1 modified

Legend:

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

    r387 r415  
    105105        return pagecount     
    106106         
    107 def test() :         
    108     """Test function.""" 
    109     if (len(sys.argv) < 2) or ((not sys.stdin.isatty()) and ("-" not in sys.argv[1:])) : 
    110         sys.argv.append("-") 
    111     totalsize = 0     
    112     for arg in sys.argv[1:] : 
    113         if arg == "-" : 
    114             infile = sys.stdin 
    115             mustclose = 0 
    116         else :     
    117             infile = open(arg, "rb") 
    118             mustclose = 1 
    119         try : 
    120             parser = Parser(infile, debug=1) 
    121             totalsize += parser.getJobSize() 
    122         except pdlparser.PDLParserError, msg :     
    123             sys.stderr.write("ERROR: %s\n" % msg) 
    124             sys.stderr.flush() 
    125         if mustclose :     
    126             infile.close() 
    127     print "%s" % totalsize 
    128      
    129107if __name__ == "__main__" :     
    130     test() 
     108    pdlparser.test(Parser)