# Feature or enhancement `sqlite3.connection()` returns a custom callable object. But `inspect.signature()` returns a generic `<Signature (*args, **kwargs)>` for it: ```pycon >>> import inspect, sqlite3 >>> con = sqlite3.connect(':memory:') >>> con('select 1') <sqlite3.Statement object at 0x7f76842d2fd0> >>> inspect.signature(con) <Signature (*args, **kwargs)> ``` This issue is similar to #118285 and #118402. <!-- gh-linked-prs --> ### Linked PRs * gh-118428 <!-- /gh-linked-prs -->
Feature or enhancement
sqlite3.connection()returns a custom callable object. Butinspect.signature()returns a generic<Signature (*args, **kwargs)>for it:This issue is similar to #118285 and #118402.
Linked PRs