Proper auto-complete IDE

Yeah, it’s a bigger issue than that. It’s not the magic renaming in panda3d.py; even if it just imported the dll’s directly, the problem is that they’re dll’s (or pyd’s) and not pure Python modules. I don’t know any IDE’s that know how to look at the symbols inside a dll.

And symbols like base are defined in the builtins module, which again IDE’s have trouble searching.

I don’t know any way around these issues. It’s kind of a fundamental problem with Python itself.

David