regular python classes don't display the module name they are in: ```python class Foo(object): pass >>> import pkg >>> f = pkg.Foo() >>> f.bar caught error: 'Foo' object has no attribute 'bar' ``` `gopy` (and its CPython2 backend) should do the same.