I have a some .py files that use spaces for indentation, and I'd like to convert them to tabs.

I could easily hack together something using regexes, but I can think of several edge cases where this approach could fail. Is there a tool that does this by parsing the file and determining the indentation level the same way the python interpreter does?

link|improve this question

67% accept rate
feedback

6 Answers

up vote 14 down vote accepted

Since PEP-8 suggests that spaces a preferred over tabs, I'm curious why you're going from preferred (spaces) to not-preferred (tabs).

Wouldn't it be simpler to follow PEP-8 and leave them spaces?

link|improve this answer
1  
I would like to change them for consistency's sake. – Corey Dec 3 '08 at 21:42
1  
@Federic Ramponi: Not against tabs. Recommend spaces. It's important to pick one, and spaces are easiest to get right. Some folks work okay with tabs, but spaces are guaranteed. – S.Lott Dec 3 '08 at 21:44
1  
PEP-8 isn't "against" tabs, it's for consistency - and they chose spaces over tabs (I imagine the python-dev mailing list has a lot of discussion of why, such as mail.python.org/pipermail/python-list/2004-April/256325.html ) – dbr Dec 3 '08 at 21:45
1  
You shouldn't not have to "get used to" using 4-space tabs, your editor should hide this from you.. Press "tab" and it inserts 4 spaces, backspace should delete them just like tabs, and so on.. – dbr Dec 4 '08 at 9:37
5  
PEP-8 makes a bad call on this issue, if only because it's decision in favor of spaces is entirely arbitrary. I personally prefer tabs from the simple reason that they work so well where spaces fail. Ex: see how you're forced to envision advanced editor features that treat 4 spaces as a single character for deletion. Why would I adopt PEP-8 if it makes coding more difficult for me? – urig Apr 12 '11 at 16:50
show 13 more comments
feedback

If there are not many files to convert, you can open them in vim, and use the :retab command.

See the vim documentation for more information.

link|improve this answer
feedback

Python includes a script for the opposite (tabs to spaces). It's C:\Python24\Tools\Scripts\reindent.py for me

link|improve this answer
This is not available under Linux, even on py26. – Sorin Sbarnea Jul 22 '10 at 13:49
feedback

:retab will swap tab with spaces, and :retab! will swap spaces with tab. 1 tab = 4 spaces, 4 spaces = 1 tab, depending on your tab setting.

link|improve this answer
+1, didn't know it worked both ways; it uses the tabstop setting, presumably? – Autopulated Feb 14 '10 at 0:49
feedback

In emacs, M-x tabify will convert spaces to tabs where possible. You'll probably want to set the tab-width variable appropriately.

I don't know if this addresses your concern that spaces be interpreted in the same way as the python interpreter, but you could always load up python-mode and use M-x indent-region.

link|improve this answer
feedback

If you use Linux, you might also play around with unexpand:

Convert blanks in each FILE to tabs, writing to standard output. With no FILE, or when FILE is -, read standard input.

link|improve this answer
You'll find a win32 build if you want. – Sorin Sbarnea Jul 22 '10 at 13:50
feedback

Your Answer

 
or
required, but never shown

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