> As a clarification, doing: > > from os import open as osopen > > would prevent the naming conflict. > only works with Python 2.0 though. But wouldn't this work in older versions?: import os osopen = os.open Alan g