]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/python.el: Trivial cleanup.
authorLeo Liu <sdl.web@gmail.com>
Mon, 16 Apr 2012 19:28:57 +0000 (03:28 +0800)
committerLeo Liu <sdl.web@gmail.com>
Mon, 16 Apr 2012 19:28:57 +0000 (03:28 +0800)
lisp/ChangeLog
lisp/progmodes/python.el

index 8f790ab0dc5a4a51b1c2681d1e1a88885ac98dfb..801a5e74804c20cb4997289ca2ae9140b0a7ae43 100644 (file)
@@ -1,3 +1,7 @@
+2012-04-16  Leo Liu  <sdl.web@gmail.com>
+
+       * progmodes/python.el: Trivial cleanup.
+
 2012-04-16  Glenn Morris  <rgm@gnu.org>
 
        * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
index 09b8999362613d85e7b8da4f7a2904bf334479c5..6f8758ebec176ad563e6fe373017c46e6fdc0797 100644 (file)
 (require 'comint)
 (require 'ansi-color)
 
-(eval-when-compile
-  (require 'compile)
-  (require 'hippie-exp))
-
-(autoload 'comint-mode "comint")
+(eval-when-compile (require 'compile))
 
 (defgroup python nil
   "Silly walks in the Python language."
@@ -1488,8 +1484,6 @@ Don't save anything for STR matching `inferior-python-filter-regexp'."
            res)
           (t (concat res s)))))
 
-(autoload 'comint-check-proc "comint")
-
 (defvar python-version-checked nil)
 (defun python-check-version (cmd)
   "Check that CMD runs a suitable version of Python."
@@ -1684,8 +1678,6 @@ value to determine defaults."
   "Caches (directory . file) pair used in the last `python-load-file' command.
 Used for determining the default in the next one.")
 
-(autoload 'comint-get-source "comint")
-
 (defun python-load-file (file-name)
   "Load a Python file FILE-NAME into the inferior Python process.
 If the file has extension `.py' import or reload it as a module.