a python refactoring library...
Project description
Overview
Rope is a python refactoring library.
New Features
caching all sub-modules of a module in rope.contrib.autoimport
fix recursion when creating modules
added basic support for setuptools
extract method handles conditional variable updates
added rope.contrib.codeassist.CompletionProposal.parameters
The rope.contrib.autoimport.AutoImport.generate_module_cache() has been changed to handle module names that end with .*. Now one can use rope.* to mean rope and all of its sub-modules.
Extract method now handles variable updates better. For instance in:
def f(a): if 0: a = 1 print(a)
When extracting the first two lines of f(), a should be passed to g(). Although these lines don’t read a, if the conditional write (like in if or while blocks) does not happen, it results in an error. So the outcome will be:
def f(a): a = g(a) print(a) def g(a): if 0: a = 1 return a
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.