I would like to pass some options to Python (version 2.6) every time, not just in interactive mode. Is there a file I can put such commands in?
EDIT: Specifically, I\'m
I'm sorry, I don't quite understand exactly what your question is, but, you might try:
import warnings warnings.simplefilter("ignore", DeprecationWarning)
So, this might not really answer the question.