vote up 0 vote down star
1

My emacs hangs (Ubuntu 9 + emacs 23 + pyflakes) when I type """ quotes for string blocks.

anybody experience the same problem? I think, it may not be the emacs problem but some python mode or pyflakes which I use it for error checking.

Anybody hot around the issue? It really frustrating experience.

flag

73% accept rate
You might want to add the versions of the python mode and pyflakes you're using. – Trey Jackson Sep 10 at 16:41
the problem is resolved with development release. Now it works.. thanks for your time – Gopalakrishnan Subramani Sep 11 at 2:11

2 Answers

vote up 2 vote down

latest pyflakes in development mode fixed this problem for me. Thanks all

sudo easy_install -U pyflakes

link|flag
vote up 2 vote down

are you using the external python-mode (from package python-mode) or the internal python mode ? I use pyflakes with the internal emacs python mode without any problems and this is my configuration :

(when (load "flymake" t)
(defun flymake-pyflakes-init ()
  (let* ((temp-file (flymake-init-create-temp-buffer-copy
                     'flymake-create-temp-inplace))
         (local-file (file-relative-name
                      temp-file
                      (file-name-directory buffer-file-name))))
    (list "pyflakes" (list local-file))))
(add-to-list 'flymake-allowed-file-name-masks
             '("\\.py\\'" flymake-pyflakes-init)))
link|flag
1  
I just upgraded to development version of pyflakes which solved the problem. Thank you for suggesstion – Gopalakrishnan Subramani Sep 11 at 2:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.