Carl wrote: > What is the equivalent of a C++ (or C#) namespace in Python?
Your best bet will be modules:
---
a.py
====
def test():
print "I am test() from a.py"
b.py
====
import a
a.test()
---
They are no direct match to C++-namespaces though, as the namespace doesn't
show up in the source but rather relies on the naming of the source
files...
--- Heiko.
--
http://mail.python.org/mailman/listinfo/python-list
