Changeset 247

Show
Ignore:
Timestamp:
08/19/05 20:41:26 (19 years ago)
Author:
jerome
Message:

Don't bother the user with installing Psyco if he doesn't have a 32 bits x86 platform.
Thanks to Matt Stegman for the hint.

Location:
pkpgcounter/trunk
Files:
2 modified

Legend:

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

    r239 r247  
    5858            import psyco  
    5959        except ImportError :     
    60             sys.stderr.write("WARN: you should install psyco if possible, this would greatly speedup parsing.\n") 
     60            sys.stderr.write("WARN: If you are running on a 32 Bits x86 platform, you should install the Python Psyco module if possible, this would greatly speedup parsing. NB : Psyco doesn't work on other platforms, so don't worry if you're in this case.\n") 
    6161            pass # Psyco is not installed 
    6262        else :     
  • pkpgcounter/trunk/README

    r235 r247  
    9393  driver was used. 
    9494   
     95  If pkpgcounter complain about your system lacking the Python Psyco module, 
     96  please consider installing it to speedup file parsing. However, don't forget 
     97  that Psyco currently only runs on the 32 bits x86 platform, so no need to  
     98  install it if you've got another system type. 
     99   
    95100============================================================================= 
    96101