[Python-mode] running Python tests

2011-03-14 Thread Yaroslav Halchenko
Dear Python-mode gurus, could someone look into adopting at least minimalistic convenience to run unittests from within emacs? e.g. https://bitbucket.org/jpellerin/nosemacs seems to be doing its minimal job just fine -- =--= Keep

Re: [Python-mode] highlight-indentation

2011-03-14 Thread Barry Warsaw
@pycon so just a quick reply... On Mar 12, 2011, at 01:44 PM, Andreas Röhler wrote: >As for the approval: thought that's precisely what the >GPL is for. Well, the GPL makes it *legal*, but approval keeps us nice. :) -B signature.asc Description: PGP signature _

Re: [Python-mode] Error during indentation

2011-03-14 Thread Andrea Crotti
Andreas Röhler writes: > Hi Andrea, > > thanks. Have some idea meanwhile wherefrom these bug. It's in the line > above, resp. it's receiving function. > > Ironically you get this bug, because syntax setting is OK now with Emacs 24. > > AFAIS bug results, because the delimiting char of a > triple-

Re: [Python-mode] highlight-indentation

2011-03-14 Thread Anton Johansson
Hi, if you can forward bug tracking automatically, please do, otherwise it's ok don't overwork it :) Also the full functionality of highlight-indentation is basically: (setq highlight-indent-offset 4) ;; Spaces indent level (font-lock-add-keywords nil `((,(format "\\( \\) \\{%s\\}" (- highlight

Re: [Python-mode] highlight-indentation

2011-03-14 Thread Anton Johansson
Hello, I'm absolutely cool with you guys using the code in any way you find suitable, nice to see some people finding it useful! Like you have discussed before, there are some issues with highlight-indentation.el that could be handled better, for example highlighting spaces that are not in the le

Re: [Python-mode] Error during indentation

2011-03-14 Thread Andreas Röhler
Am 13.03.2011 21:09, schrieb Andrea Crotti: Barry Warsaw writes: On Mar 13, 2011, at 12:49 PM, Andrea Crotti wrote: I get a strange error when I have a situation like this: --8<---cut here---start->8--- 1 class Foo(object): 2 """ 3

Re: [Python-mode] Error during indentation

2011-03-14 Thread Andrea Crotti
Barry Warsaw writes: > On Mar 13, 2011, at 12:49 PM, Andrea Crotti wrote: > >>I get a strange error when I have a situation like this: >>--8<---cut here---start->8--- >> 1class Foo(object): >> 2""" >> 3Some doc >>