1Only in lisp/progmodes/: cc-mode.elc
2Only in lisp/progmodes/: cc-vars.elc
3diff -up /SourceCache/emacs/emacs-74.2/emacs/lisp/progmodes/python.el lisp/progmodes/python.el
4--- /SourceCache/emacs/emacs-74.2/emacs/lisp/progmodes/python.el	2007-05-15 14:57:33.000000000 -0700
5+++ lisp/progmodes/python.el	2008-09-02 14:45:02.000000000 -0700
6@@ -1347,7 +1347,9 @@ buffer for a list of commands.)"
7   ;; invoked.  Would support multiple processes better.
8   (when (or new (not (comint-check-proc python-buffer)))
9     (with-current-buffer
10-        (let* ((cmdlist (append (python-args-to-list cmd) '("-i")))
11+	(let* ((cmdlist
12+		(append (python-args-to-list cmd)
13+			'("-i" "-c" "import sys; sys.path.remove('')")))
14                (path (getenv "PYTHONPATH"))
15                (process-environment	; to import emacs.py
16                 (cons (concat "PYTHONPATH=" data-directory
17Only in lisp/progmodes/: python.el.orig
18