2011/9/19 Fabian Pedregosa <[email protected]>: > Hi all, > > The docstring of sklearn.utils.deprecated says it should ``print a > warning when the function is called/the class is instantiated and adds > a warning to the docstring`` . However, executing some deprecated > classes doesn't print anything for me: > > """ > In [1]: from sklearn.neighbors import NeighborsRegressor > > In [2]: NeighborsRegressor() > Out[2]: > NeighborsRegressor(algorithm='auto', classification_type='knn_vote', > leaf_size=30, n_neighbors=5, radius=1.0) > """ > > I tested on python {2.6, 2.7}, with the same result.
Indeed. I am pretty sure it used to work though. Need debugging the _decorate_class method. -- Olivier http://twitter.com/ogrisel - http://github.com/ogrisel ------------------------------------------------------------------------------ BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA Learn about the latest advances in developing for the BlackBerry® mobile platform with sessions, labs & more. See new tools and technologies. Register for BlackBerry® DevCon today! http://p.sf.net/sfu/rim-devcon-copy1 _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
