In message <[EMAIL PROTECTED]>, Steven D'Aprano wrote: > What does type(os.path) return when you try it?
It returns the type of the value contained in that variable, of course:
>>> import os
>>> os.path = 3
>>> type(os.path)
<type 'int'>
See, it's just a variable, like any other.
--
http://mail.python.org/mailman/listinfo/python-list
