Searched refs:frontopt (Results 1 – 1 of 1) sorted by relevance
/external/python/cffi/demo/ |
D | _curses.py | 182 def _process_args(funcname, args, count, optcount, frontopt=0): argument 184 if frontopt: 187 outargs.extend(args[:frontopt]) 188 args = args[frontopt:] 191 outargs.extend([None] * frontopt) 194 funcname, count, count + optcount + frontopt)) 199 def _argspec(count, optcount=0, frontopt=0): argument 204 func.__name__, args, count, optcount, frontopt)
|