Re: [Python-mode] myrkwid ready to merge?

2011-03-28 Thread Andreas Röhler
Am 28.03.2011 16:55, schrieb Barry Warsaw: On Mar 26, 2011, at 07:08 PM, Andreas Röhler wrote: AFAIS all indent-bugs reported are done with Myrkwid branch. Provided tests from inside Emacs for it: py-bug-numbered-tests.el Also tests may be run in batch-mode: python-mode-tests.sh Please have

Re: [Python-mode] myrkwid ready to merge?

2011-03-28 Thread Barry Warsaw
One other thing I noticed is that both branches are of the old bzr format. I'd like to upgrade trunk to 2a format, which I can do via the Launchpad web u/i, but if I do that, all other branches you have (either on Launchpad or locally) will also have to be upgraded. Since you've got the big myrkwi

Re: [Python-mode] myrkwid ready to merge?

2011-03-28 Thread Barry Warsaw
On Mar 26, 2011, at 07:08 PM, Andreas Röhler wrote: >AFAIS all indent-bugs reported are done with Myrkwid branch. > >Provided tests from inside Emacs for it: py-bug-numbered-tests.el > >Also tests may be run in batch-mode: python-mode-tests.sh > >Please have a look if it's ready: > >https://code.l

Re: [Python-mode] Python mode decorators-face

2011-03-28 Thread Barry Warsaw
On Mar 28, 2011, at 03:41 PM, David Miller wrote: >I frequently use decorators from libraries named like: > >@patch.object(Foo, 'bar') >def func(arg): ># etc > >The regex for py-decorators-face only matches the patch section, leaving the >object part set to the default face ( M-x describe-face

[Python-mode] Python mode decorators-face

2011-03-28 Thread David Miller
Hi - I frequently use decorators from libraries named like: @patch.object(Foo, 'bar') def func(arg): # etc The regex for py-decorators-face only matches the patch section, leaving the object part set to the default face ( M-x describe-face => Face: default) To my eye this looks like the wro