I want to clean up my PYTHONPATH.
I know I appended it in /home/me/.profile, like so:
PYTHONPATH=/home/hoff/code/someproject/pythonmods:$PYTHONPATH
PYTHONPATH=/home/hoff/code/google_appengine/google/appengine/tools:$PYTHONPATH
export PYTHONPATH
But there must be other places I have appended the PYTHONPATH, when I go into a python interpreter and and look at sys.path, there are all sorts of additional directories.
Where might I have specified them, i.e. what are all the possible place where one can append the PYTHONPATH (on linux/ubuntu)?