Which tool people normally use when they do the refactoring for Python!?
For me, to get rid of a variable, I need to trace through the program to make sure that I completely delete it!?
Which tool people normally use when they do the refactoring for Python!? For me,
Share
PyCharm by JetBrain supports python refactoring; netbeans python module used to have refactoring too, but it’s no longer working. Other IDEs might have it too.
Please be very well aware, though, that python refactoring is not as safe as, say, java refactoring, because of the very dynamic nature of the python language.