Changeset 391

Show
Ignore:
Timestamp:
Wed Dec 19 11:21:05 2007
Author:
naufraghi
Message:

Avoid 'import os' that causes problems in py25

Files:

Legend:

Unmodified
Added
Removed
Modified
  • branches/python2.5/support/rthooks/opengl.py

    r218 r391  
    34 34  
    35 35 def myopen(fn, *args):  
    36       import os  
    37       lastdir = os.path.basename(os.path.dirname(fn))  
    38       if os.path.basename(fn) == "version" and os.path.splitext(lastdir)[1] == ".pyz":  
    39           import cStringIO  
      36     if fn.endswith("version") and ".pyz" in fn:  
    40 37         # Restore original open, since we're almost done  
    41 38         __builtins__.__dict__["open"] = __realopen__  
     
    43 40         # used by the library, but it needs to be made of four numbers  
    44 41         # separated by dots.  
      42         import cStringIO  
    45 43         return cStringIO.StringIO("0.0.0.0")  
    46 44     return __realopen__(fn, *args)