Wed, 23 Apr 2014 23:23:56 +0200
python2Compatible flag added.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginApis.py | file | annotate | diff | comparison | revisions | |
PluginApis.zip | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Wed Jan 01 14:47:51 2014 +0100 +++ b/ChangeLog Wed Apr 23 23:23:56 2014 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 1.2.0: +- Python 2 compatibility flag added + Version 1.1.1: - fixed some code style issues
--- a/PluginApis.py Wed Jan 01 14:47:51 2014 +0100 +++ b/PluginApis.py Wed Apr 23 23:23:56 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the APIs plugin. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals import os import glob @@ -19,7 +19,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "1.1.1" +version = "1.2.0" className = "PluginApis" packageName = "APIs" shortDescription = "API files for auto-completion and call tips." @@ -28,6 +28,7 @@ """ and call tips that are often missing from distribution packages.""" needsRestart = False pyqtApi = 2 +python2Compatible = True # End-of-Header error = ""