home / github / issue_comments

Menu
  • Search all tables
  • GraphQL API

issue_comments: 634882112

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/datasette/issues/581#issuecomment-634882112 https://api.github.com/repos/simonw/datasette/issues/581 634882112 MDEyOklzc3VlQ29tbWVudDYzNDg4MjExMg== 9599 2020-05-27T19:14:55Z 2020-05-27T19:14:55Z OWNER

https://docs.python.org/3/library/inspect.html#introspecting-callables-with-the-signature-object

New in version 3.3.

The Signature object represents the call signature of a callable object and its return annotation. To retrieve a Signature object, use the signature() function.

inspect.``signature(callable, *, follow_wrapped=True)

Return a Signature object for the given callable:

```

from inspect import signature def foo(a, , b:int, *kwargs): ... pass

sig = signature(foo)

str(sig) '(a, , b:int, *kwargs)'

str(sig.parameters['b']) 'b:int'

sig.parameters['b'].annotation <class 'int'> ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
502993509  
Powered by Datasette · Queries took 1.013ms · About: github-to-sqlite