* lisp/progmodes/python.el (python-shell-completion-get-completions):
Fix import case regexp.
Fixes: debbugs:18582
+2014-10-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
+
+ Fix import completion. (Bug#18582)
+ * progmodes/python.el (python-shell-completion-get-completions):
+ Fix import case regexp.
+
2014-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/bat-mode.el (bat-font-lock-keywords): Fix \\<_ typo
(save-excursion
(buffer-substring-no-properties
(line-beginning-position) ;End of prompt.
- (progn
- (re-search-backward "^")
- (python-util-forward-comment) ;FIXME: Why?
- (point)))))
+ (re-search-backward "^"))))
(completion-code
;; Check whether a prompt matches a pdb string, an import
;; statement or just the standard prompt and use the
(t nil)))
(input
(if (string-match
- (python-rx (+ space) (or "from" "import") space)
+ (python-rx line-start (* space) (or "from" "import") space)
line)
line
input)))