Closed thorwhalen closed 2 years ago
Currently, the signatures module uses a dict to express the mapping between builtin names and signatures, and uses the signature(lambda ...) way of getting signature values for these.
signatures
signature(lambda ...)
{ ... 'filter': signature(lambda function, iterable: ...), 'map': signature(lambda func, *iterables: ...), 'print': signature(lambda *value, sep=' ', end='\n', file=sys.stdout, flush=False: ...), ... }
This has several disadvantages:
signature(lambda...)
Find a better way to do so.
Related: issue 30
Currently, the
signatures
module uses a dict to express the mapping between builtin names and signatures, and uses thesignature(lambda ...)
way of getting signature values for these.This has several disadvantages:
signature(lambda...)
is combersomeFind a better way to do so.
Related: issue 30