What refactoring tools do you use for Python ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T08:03:52Z http://stackoverflow.com/feeds/question/28796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/28796/what-refactoring-tools-do-you-use-for-python 8 What refactoring tools do you use for Python ? Thomas Vander Stichele 2008-08-26T18:26:51Z 2009-11-28T18:07:40Z <p>I have a bunch of classes I want to rename. Some of them have names that are small and that name is reused in other class names, where I don't want that name changed. Most of this lives in Python code, but we also have some XML code that references class names.</p> <p>Simple search and replace only gets me so far. In my case, I want to rename AdminAction to AdminActionPlug and AdminActionLogger to AdminActionLoggerPlug, so the first one's search-and-replace would also hit the second, wrongly.</p> <p>Does anyone have experience with Python refactoring tools ? Bonus points if they can fix class names in the XML documents too.</p> http://stackoverflow.com/questions/28796/what-refactoring-tools-do-you-use-for-python/28910#28910 1 Answer by dF for What refactoring tools do you use for Python ? dF 2008-08-26T19:25:00Z 2008-08-26T19:38:47Z <p>Does your editor or IDE support search/replace with regular expressions? You could get past your problem using a regex with word boundaries: e.g. replacing "<code>\bAdminAction\b</code>" with "<code>AdminActionPlug</code>" wouldn't match "<code>AdminActionLogger</code>".</p> http://stackoverflow.com/questions/28796/what-refactoring-tools-do-you-use-for-python/29347#29347 3 Answer by Turambar for What refactoring tools do you use for Python ? Turambar 2008-08-27T01:50:48Z 2008-08-27T01:50:48Z <p>Most editors support the "whole word" search option. It's usually a checkbox in the search dialog, and what it does is only match the search term if it has leading and trailing spaces, dots, and most other delimiters. It will probably work in your case.</p> http://stackoverflow.com/questions/28796/what-refactoring-tools-do-you-use-for-python/29770#29770 4 Answer by Thomas Vander Stichele for What refactoring tools do you use for Python ? Thomas Vander Stichele 2008-08-27T09:15:42Z 2008-08-27T09:15:42Z <p>In the meantime, I've tried it two tools that have some sort of integration with vim.</p> <p>The first is <a href="http://rope.sourceforge.net/" rel="nofollow">Rope</a>, a python refactoring library that comes with a Vim (and emacs) plug-in. I tried it for a few renames, and that definately worked as expected. It allowed me to preview the refactoring as a diff, which is nice. It is a bit text-driven, but that's alright for me, just takes longer to learn.</p> <p>The second is <a href="http://bicyclerepair.sourceforge.net/" rel="nofollow">Bicycle Repair Man</a> which I guess wins points on name. Also plugs into vim and emacs. Haven't played much with it yet, but I remember trying it a long time ago.</p> <p>Haven't played with both enough yet, or tried more types of refactoring, but I will do some more hacking with them.</p> http://stackoverflow.com/questions/28796/what-refactoring-tools-do-you-use-for-python/1813244#1813244 0 Answer by przemo_li for What refactoring tools do you use for Python ? przemo_li 2009-11-28T18:07:40Z 2009-11-28T18:07:40Z <p>Your IDE can support refactorings !! Check it Eric, Eclipse, WingIDE have build in tools for refactorings (Rename including). And that are very safe refactorings - if something can go wrong IDE wont do ref.</p> <p>Also consider adding few unit test to ensure your code did not suffer during refactorings.</p>