Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Fri, 04 May 2012 21:11:40 Commit: 3d1c7e3f57e3a4fa2ac527cd14f5ece5501c10c3 https://github.com/geany/geany/commit/3d1c7e3f57e3a4fa2ac527cd14f5ece5501c10...
Log Message: ----------- PEP8 fixes
Modified Paths: -------------- plugins/genapi.py
Modified: plugins/genapi.py 5 files changed, 4 insertions(+), 1 deletions(-) =================================================================== @@ -30,7 +30,9 @@ """
-import re, sys +import re +import sys +
def get_function_names(): names = [] @@ -47,6 +49,7 @@ def get_function_names(): filep.close() return names
+ def get_api_tuple(source): match = re.match("^([a-z]+)_([a-z][a-z0-9_]+)$", source) return 'p_' + match.group(1), match.group(2)
@@ Diff output truncated at 100000 characters. @@
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: TBD).