--- a/RefactoringRope/RefactoringDialogBase.py Sun Oct 13 18:35:25 2013 +0200 +++ b/RefactoringRope/RefactoringDialogBase.py Fri Oct 25 19:33:36 2013 +0200 @@ -52,7 +52,9 @@ @param handle reference to the task handle (rope.base.taskhandle.TaskHandle) - @return reference to the Changes object (rope.base.change.ChangeSet) + @ireturn reference to the ChangeSet object (rope.base.change.ChangeSet) + @exception NotImplementedError raised to indicate that this method must + be overridden by subclasses """ raise NotImplementedError("_calculateChanges must be overridden.") @@ -85,7 +87,8 @@ """ Public method to apply the changes. - @param reference to the Changes object (rope.base.change.ChangeSet) + @param changes reference to the ChangeSet object + (rope.base.change.ChangeSet) """ if changes is None: changes = self.__getChanges()