in the File .git/info/exclude you can define files which should not be tracked by git (and not proposed to be added on git status). You can use * as a wildcard.

For ptyhon projects it wouldn't be a bad idea to exclude *.pyc and if you are using vim *.swp is always a good idea.