if (pyEdit.getSelectionProvider() == null) {
return new Tuple3<RefactoringRequest, PyRenameEntryPoint, Boolean>(null, null, false);
}
//ok, the editor is still there wit ha document... move on
PyRefactorAction pyRefactorAction = getRefactorAction(pyEdit);
final RefactoringRequest req = getRefactoringRequest(pyEdit, pyRefactorAction, this.ps);
if (req == null || !req.nature.getRelatedInterpreterManager().isConfigured()) { //we check if it's configured because it may still be a stub...
return new Tuple3<RefactoringRequest, PyRenameEntryPoint, Boolean>(null, null, false);