aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabián Ezequiel Gallina2012-05-17 00:03:07 -0300
committerFabián Ezequiel Gallina2012-05-17 00:03:07 -0300
commit099bf0104e2c6118189b64e79651f3bdfe9e09b2 (patch)
tree0332ffb3ddaa243755832eafd92aedab0a4dee8f
parentda3d48d7d6a857c6a0da21c91685e951523c6b64 (diff)
downloademacs-099bf0104e2c6118189b64e79651f3bdfe9e09b2.tar.gz
emacs-099bf0104e2c6118189b64e79651f3bdfe9e09b2.zip
Added commentary about installing pyreadline on system that bundles Python without readline
-rw-r--r--lisp/progmodes/python.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 8b7acc6b74c..623614598d3 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -72,6 +72,12 @@
72;; python-shell-completion-string-code 72;; python-shell-completion-string-code
73;; "';'.join(__IP.complete('''%s'''))\n") 73;; "';'.join(__IP.complete('''%s'''))\n")
74 74
75;; Please note that the default completion system depends on the
76;; readline module, so if you are using some Operating System that
77;; bundles Python without it (like Windows) just install the
78;; pyreadline from http://ipython.scipy.org/moin/PyReadline/Intro and
79;; you should be good to go.
80
75;; Pdb tracking: when you execute a block of code that contains some 81;; Pdb tracking: when you execute a block of code that contains some
76;; call to pdb (or ipdb) it will prompt the block of code and will 82;; call to pdb (or ipdb) it will prompt the block of code and will
77;; follow the execution of pdb marking the current line with an arrow. 83;; follow the execution of pdb marking the current line with an arrow.