Peter Chant wrote:
Hmm. I'm fairly new to python. I was trying to work out if modules ran similarly to namespaces.
If you mean C++ namespaces, no, not really. If you give your module the same name as a built-in one, your module doesn't get merged with the built-in one -- it overrides it, leading to much confusion. -- Greg