I see in namespace.py you're using _getAttributeNames() to make dynamic attributes tab-completable in IPython. This is a heads up that we're considering getting rid of the use of that method (ipython/ipython#8081). Since Python 2.6, there is a standard __dir__() method which objects can define for the same purpose.
I see in namespace.py you're using
_getAttributeNames()
to make dynamic attributes tab-completable in IPython. This is a heads up that we're considering getting rid of the use of that method (ipython/ipython#8081). Since Python 2.6, there is a standard__dir__()
method which objects can define for the same purpose.