Comment 7 for bug 883905

Revision history for this message
Andreas Roehler (a-roehler) wrote : Re: [Bug 883905] Re: More indentation bugs

Am 01.11.2011 09:30, schrieb Georg Brandl:
> Aha! It has the correct value (and for all other lines too).
>
> And indeed, when I bind TAB to "py-indent-line" (instead of "indent-for-
> tab-command"), I get the correct behavior, but it doesn't cycle anymore.
>

unloading python.el might solve it

I do the following before loading my several python-modes:

   (when (featurep 'ipython) (unload-feature 'ipython t))
   (when (featurep 'python-mode) (unload-feature 'python-mode t))
   (when (featurep 'python) (unload-feature 'python t))

maybe we should deliver this?