Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f998277 commit 7048d3aCopy full SHA for 7048d3a
1 file changed
bipython/__init__.py
@@ -1002,10 +1002,7 @@ def _populate_completion(self):
1002
# This is mostly just stolen from the cli module.
1003
func_name, args, is_bound, in_arg = self.argspec
1004
args, varargs, varkw, defaults = args[:4]
1005
- if py3:
1006
- kwonly, kwonly_defaults = args[4:]
1007
- else:
1008
- kwonly, kwonly_defaults = [], {}
+ kwonly, kwonly_defaults = [], {}
1009
markup = [('bold name', func_name),
1010
('name', ': (')]
1011
0 commit comments