Ivan Shevanski wrote: > is there a way to turn off syntax warnings or just make them not > visible?
import warnings warnings.filterwarnings('ignore', category=SyntaxWarning) -- http://mail.python.org/mailman/listinfo/python-list
Ivan Shevanski wrote: > is there a way to turn off syntax warnings or just make them not > visible?
import warnings warnings.filterwarnings('ignore', category=SyntaxWarning) -- http://mail.python.org/mailman/listinfo/python-list