From 9250d794d7bd59952ac4b182959a098b1a9e9d4d Mon Sep 17 00:00:00 2001 From: ZyX Date: Sun, 7 Apr 2013 14:32:20 +0400 Subject: [PATCH] Remove `pl` argument and first argument to `render*` from docs --- docs/source/powerline_autodoc.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/powerline_autodoc.py b/docs/source/powerline_autodoc.py index 38f0a4cb..613f9a85 100644 --- a/docs/source/powerline_autodoc.py +++ b/docs/source/powerline_autodoc.py @@ -44,7 +44,8 @@ class ThreadedDocumenter(autodoc.FunctionDocumenter): if (arg == 'self' or (arg == 'segment_info' and getattr(self.object, 'powerline_requires_segment_info', None)) or - (method == 'render_one' and -i == len(argspec.args)) or + (arg == 'pl') or + (method.startswith('render') and 1-i == len(argspec.args)) or arg in args): continue if argspec.defaults and len(argspec.defaults) >= -i: @@ -64,7 +65,8 @@ class ThreadedDocumenter(autodoc.FunctionDocumenter): args = [] defaults = [] for i, arg in zip(count(-1, -1), reversed(argspec.args)): - if (arg == 'segment_info' and getattr(self.object, 'powerline_requires_segment_info', None)): + if ((arg == 'segment_info' and getattr(self.object, 'powerline_requires_segment_info', None)) or + arg == 'pl'): continue if argspec.defaults and len(argspec.defaults) >= -i: default = argspec.defaults[i]