Show
Ignore:
Timestamp:
07/17/13 22:17:23 (11 years ago)
Author:
jerome
Message:

Removed all references to psyco

Files:
1 modified

Legend:

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

    r3474 r3573  
    5858        else : 
    5959            self.logdebug("Input file is in the '%s' file format." % self.format) 
    60         try : 
    61             import psyco 
    62         except ImportError : 
    63             pass # Psyco is not installed 
    64         else : 
    65             # Psyco is installed, tell it to compile 
    66             # the CPU intensive methods : PCL and PCLXL 
    67             # parsing will greatly benefit from this. 
    68             psyco.bind(self.getJobSize) 
    6960        self.infile = open(self.filename, self.openmode) 
    7061        # self.logdebug("Opened %s in '%s' mode." % (self.filename, self.openmode))