PluginRefactoringRope.py

changeset 335
9438c2ed7732
parent 333
dbaee558f3ba
child 337
cfff39f4594d
equal deleted inserted replaced
334:fe30dc24c9e5 335:9438c2ed7732
21 # Start-Of-Header 21 # Start-Of-Header
22 name = "Refactoring Rope Plugin" 22 name = "Refactoring Rope Plugin"
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 23 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
24 autoactivate = True 24 autoactivate = True
25 deactivateable = True 25 deactivateable = True
26 version = "6.12.1" 26 version = "7.0.0"
27 className = "RefactoringRopePlugin" 27 className = "RefactoringRopePlugin"
28 packageName = "RefactoringRope" 28 packageName = "RefactoringRope"
29 internalPackages = "rope" 29 internalPackages = "rope"
30 shortDescription = "Refactoring using the Rope library." 30 shortDescription = "Refactoring using the Rope library."
31 longDescription = ( 31 longDescription = (
34 """ alternative auto-completion and call-tips provider. It is a""" 34 """ alternative auto-completion and call-tips provider. It is a"""
35 """ provider for code documentation as well.""" 35 """ provider for code documentation as well."""
36 ) 36 )
37 pyqtApi = 2 37 pyqtApi = 2
38 doNotCompile = True 38 doNotCompile = True
39 python2Compatible = True
40 # End-Of-Header 39 # End-Of-Header
41 40
42 error = "" 41 error = ""
43 42
44 refactoringRopePluginObject = None 43 refactoringRopePluginObject = None
301 Private method to determine the valid language strings. 300 Private method to determine the valid language strings.
302 301
303 @return list of valid language strings 302 @return list of valid language strings
304 @rtype list of str 303 @rtype list of str
305 """ 304 """
306 return ["Python", "Python2", "Python3", "Pygments|Python", 305 return ["Python3", "Pygments|Python 3", "MicroPython"]
307 "Pygments|Python 3"]
308 306
309 def __editorOpened(self, editor): 307 def __editorOpened(self, editor):
310 """ 308 """
311 Private slot called, when a new editor was opened. 309 Private slot called, when a new editor was opened.
312 310

eric ide

mercurial