Changeset 326

Show
Ignore:
Timestamp:
Fri Nov 16 17:01:00 2007
Author:
danielevarrazzo
Message:

Search modules in the sys.path before than in other paths.

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/bindepend.py

    r324 r326  
    81 81       Return the full path name of MOD.  
    82 82       Will search the full Windows search path, as well as sys.path"""  
    83     epath = getWindowsPath() + sys.path  
      83   # Search sys.path first!  
      84   epath = sys.path + getWindowsPath()  
    84 85   if xtrapath is not None:  
    85 86     if type(xtrapath) == type(''):