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/ooo.py

    r387 r415  
    6464        return pagecount 
    6565         
    66 def test() :         
    67     """Test function.""" 
    68     if (len(sys.argv) < 2) or ((not sys.stdin.isatty()) and ("-" not in sys.argv[1:])) : 
    69         sys.argv.append("-") 
    70     totalsize = 0     
    71     for arg in sys.argv[1:] : 
    72         if arg == "-" : 
    73             infile = sys.stdin 
    74             mustclose = 0 
    75         else :     
    76             infile = open(arg, "rb") 
    77             mustclose = 1 
    78         try : 
    79             parser = Parser(infile, debug=1) 
    80             totalsize += parser.getJobSize() 
    81         except pdlparser.PDLParserError, msg :     
    82             sys.stderr.write("ERROR: %s\n" % msg) 
    83             sys.stderr.flush() 
    84         if mustclose :     
    85             infile.close() 
    86     print "%s" % totalsize 
    87      
    8866if __name__ == "__main__" :     
    89     test() 
     67    pdlparser.test(Parser)