--- /org/python/core/PyModule.java Tue Dec 5 23:58:32 2006 +++ PyModule.java Thu Jan 18 16:43:30 2007 @@ -5,7 +5,10 @@ { public PyObject __dict__; + static PyType type = PyType.fromClass(PyModule.class); + public PyModule(String name, PyObject dict) { + super(type); if (dict == null) __dict__ = new PyStringMap(); else