(py-shell): Fixed Emacs 18 bug, use of boundp instead of fboundp.
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 8789c66..9d5f514 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -590,7 +590,7 @@
(progn
(require 'shell)
(switch-to-buffer-other-window
- (apply (if (boundp 'make-shell) 'make-shell 'make-comint)
+ (apply (if (fboundp 'make-shell) 'make-shell 'make-comint)
"Python" py-python-command nil))))
(make-local-variable 'shell-prompt-pattern)
(setq shell-prompt-pattern "^>>> \\|^\\.\\.\\. ")