I'm using swig to generate python wrapper for a C++ library. I tend to use the generated python module in an interactive manner using ipython.
Say I have the following C++ class:
class test
{
int num;
int foo();
};
Swig wraps this class with a python class:
class test:
def foo():...
__swig_getmethods__["num"] = ...
__swig_setmethods__["num"] = ...
.
.
.
When using interactively with ipython. I have noticed that tab completions will successfully find "foo", but not "num".
After a little digging, I saw that ipython uses the "dir" method for tab completion.
The way swig generates non-function class members is by implementing __setattr__ and __getattr__. All they do is check the __swig_set/getmethods__ dictionaries and return the value, if found.
This is why members like "num" are not returned when trying dir(test).
Ideally, it would be nice if swig could implement __dir__, for each of its classes. Something like this could be added to every swig wrapper class:
# Merge the two method dictionaries, and get the keys
__swig_dir__ = dict(__swig_getmethods__.items() + __swig_setmethods__.items()).keys()
# Implement __dir__() to return it plus all of the other members
def __dir__(self):
return __dict__.keys() + __swig_dir__
My questions:
- Is there an easy way to get the dir() function to return the non-function members as well?
- If the answer to 1 is no, is there an easy way to add the above code in every python class that swig generates?
I know this is a minor thing, but tab completion has a very positive effect on productivity in my opinion.
Thanks
__dict__, test it out, then post it. – Marcin Sep 9 '12 at 18:10