Files
openide/python/testData/refactoring/pullup/duplicateImport/Class.py
Dmitry Trofimov 67bcf88cbd Revert "Revert "Merge branch 'master' of git.labs.intellij.net:idea/ultimate""
This reverts commit 3a2ad1f6c248ce02e860be14b796981de7ccfeee.
2011-02-04 17:17:18 +03:00

10 lines
232 B
Python

from SuperClass import SuperClass
from sys import argv
class AnyClass(SuperClass):
def this_should_be_in_super(self, some_argument):
if not self.args:
self.args = argv
self.argument = some_argument