Specifically, I'm looking at the collections module, which is written in C, and my Bunch object, which is written in Python. I'd like the Bunch object to appear in the collections module so that you can do:
from collections import Bunch
without, of course, removing the ability to do:
from collections import deque
There's no need for the code to reside in the same file or anything of course -- I just want the different objects to appear in the same module.
Thanks,
Steve -- http://mail.python.org/mailman/listinfo/python-list