Hi, On Thu, Oct 15, 2009 at 06:27:17PM -0700, * wrote: > Hello, I'm getting the following warning when running pylint: > > /usr/lib/python2.6/site-packages/pylint/lint.py:314: > DeprecationWarning: use lgc.optik_ext.check_csv > value = check_csv(None, opt_name, value)
DeprecationWarning is a standard Python mechanism used to warn the users of a library that the API is changing. See http://www.python.org/dev/peps/pep-0004/ for details. The logilab-common library uses this mechanism. It's pylint that needs to be updated. It will be before the next release. As Sylvain said, `python -W ignore` is the option you need to use if you do not want python to print the deprecation warnings. -- Nicolas Chauvat logilab.fr - services en informatique scientifique et gestion de connaissances _______________________________________________ Python-Projects mailing list Python-Projects@lists.logilab.org http://lists.logilab.org/mailman/listinfo/python-projects