vote up 7 vote down star
3

When digging into legacy Python code and writing Python code myself, I often use pylint. I'm also using Clone Digger. I've recently started to use rope, which is a library for automated refactoring.

But I'm looking for something else than rope. I would prefer a tool that just makes suggestions about possible refactorings: names the refactoring, optionally provides a short description of it (great for learning purposes), highlights the code section and lets me do the refactoring myself. Is there such a tool?

flag

44% accept rate
For learning purposes, I'd recommend either refactoring.com or the actual book by Martin Fowler, I don't know of any tool that works exactly like you described :( – Ryan Apr 26 at 5:25
Do you have a concrete example of the sort of tool you're looking for, that already exists for Python or another programming language? – bignose Apr 28 at 6:56
Both pylint and Clone Digger suggest some problematic places by pointing to specific problems in the code, but they do not suggest refactorings themselves. – Anonymous Apr 28 at 14:43

3 Answers

vote up 1 vote down

I don't if that type of tool exists in any specific language, although the concept was mentioned in Martin Fowler's refactoring book (web reference).

The best tool I know of that currently exists is cyclomatic complexity. This article implements a cyclomatic complexity counter for python.

The other easy metric to target is method/function length, number of attributes of objects/classes and number of parameters to functions, if I recall, pylint already counted those.

link|flag
vote up 0 vote down

NetBeans has an early access version that supports Python, and it is rather nice. It has some basic refactoring tools that I found the be useful. As an added bonus it works on Windows, Linux, Mac OS X and Solaris.

Check it out at: http://www.netbeans.org/features/python/

link|flag
I don't see anything at the reference you give that would suggest it does what the question asks for: giving suggestions to the programmer as to which refactorings to perform, at what specific point in their code. – bignose Apr 29 at 2:15
vote up 0 vote down

Check out bicycle repair man http://bicyclerepair.sourceforge.net/

What is Bicycle Repair Man? The Bicycle Repair Man project is an attempt to create refactoring browser functionality for python. It is packaged as a library that can be added to IDEs and editors to provide refactoring capabilities. Bindings for Emacs and Vi are included with the package.

Never used it myself, but have read about it. Sounds like what you are looking for.

link|flag
2  
BicycleRepairMan is like rope, but older and has less features than rope. It's not what I'm looking for. I've used BRM in the past. I didn't mention it in my question because rope replaced it. – Anonymous Apr 25 at 12:46

Your Answer

Get an OpenID
or

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