Fixed some code style issues. release-1.1.1

Thu, 24 Oct 2013 19:00:41 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 24 Oct 2013 19:00:41 +0200
changeset 6
89b4debad1df
parent 5
d4b748c8d6e2
child 7
a4dd9e3cd262

Fixed some code style issues.

ChangeLog file | annotate | diff | comparison | revisions
Documentation/source/Plugin_Apis.PluginApis.html file | annotate | diff | comparison | revisions
PluginApis.e4p file | annotate | diff | comparison | revisions
PluginApis.py file | annotate | diff | comparison | revisions
PluginApis.zip file | annotate | diff | comparison | revisions
--- a/ChangeLog	Sun Oct 13 18:31:06 2013 +0200
+++ b/ChangeLog	Thu Oct 24 19:00:41 2013 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 1.1.1:
+- fixed some code style issues
+
 Version 1.1.0:
 - Python 2 compatibility for Eric 5
 - Enabled for very old Python2 projects
--- a/Documentation/source/Plugin_Apis.PluginApis.html	Sun Oct 13 18:31:06 2013 +0200
+++ b/Documentation/source/Plugin_Apis.PluginApis.html	Thu Oct 24 19:00:41 2013 +0200
@@ -108,6 +108,11 @@
 <p>
     Module function to return the API files made available by this plugin.
 </p><dl>
+<dt><i>language</i></dt>
+<dd>
+language to get APIs for (string)
+</dd>
+</dl><dl>
 <dt>Returns:</dt>
 <dd>
 list of API filenames (list of string)
--- a/PluginApis.e4p	Sun Oct 13 18:31:06 2013 +0200
+++ b/PluginApis.e4p	Thu Oct 24 19:00:41 2013 +0200
@@ -222,4 +222,77 @@
       </dict>
     </DocumentationParams>
   </Documentation>
+  <Checkers>
+    <CheckersParams>
+      <dict>
+        <key>
+          <string>Pep8Checker</string>
+        </key>
+        <value>
+          <dict>
+            <key>
+              <string>DocstringType</string>
+            </key>
+            <value>
+              <string>eric</string>
+            </value>
+            <key>
+              <string>ExcludeFiles</string>
+            </key>
+            <value>
+              <string></string>
+            </value>
+            <key>
+              <string>ExcludeMessages</string>
+            </key>
+            <value>
+              <string>E24, W293, N802, N803, N807, N808, N821</string>
+            </value>
+            <key>
+              <string>FixCodes</string>
+            </key>
+            <value>
+              <string></string>
+            </value>
+            <key>
+              <string>FixIssues</string>
+            </key>
+            <value>
+              <bool>False</bool>
+            </value>
+            <key>
+              <string>HangClosing</string>
+            </key>
+            <value>
+              <bool>False</bool>
+            </value>
+            <key>
+              <string>IncludeMessages</string>
+            </key>
+            <value>
+              <string></string>
+            </value>
+            <key>
+              <string>MaxLineLength</string>
+            </key>
+            <value>
+              <int>79</int>
+            </value>
+            <key>
+              <string>NoFixCodes</string>
+            </key>
+            <value>
+              <string>E501</string>
+            </value>
+            <key>
+              <string>RepeatMessages</string>
+            </key>
+            <value>
+              <bool>False</bool>
+            </value>
+          </dict>
+        </value>
+      </dict>
+    </CheckersParams>
+  </Checkers>
 </Project>
--- a/PluginApis.py	Sun Oct 13 18:31:06 2013 +0200
+++ b/PluginApis.py	Thu Oct 24 19:00:41 2013 +0200
@@ -19,11 +19,12 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "1.1.0"
+version = "1.1.1"
 className = "PluginApis"
 packageName = "APIs"
 shortDescription = "API files for auto-completion and call tips."
-longDescription = """This plug-in provides API files for auto-completion""" \
+longDescription = \
+    """This plug-in provides API files for auto-completion""" \
     """ and call tips that are often missing from distribution packages."""
 needsRestart = False
 pyqtApi = 2
@@ -36,6 +37,7 @@
     """
     Module function to return the API files made available by this plugin.
     
+    @param language language to get APIs for (string)
     @return list of API filenames (list of string)
     """
     if language in ["Python3",  "Python2", "Python"]:
Binary file PluginApis.zip has changed

eric ide

mercurial