[Tutor] Tutor digest, Vol 1 #537 - 13 msgs

alan.gauld@bt.com alan.gauld@bt.com
Mon, 22 Jan 2001 12:51:08 -0000


> 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