inspect: Implement a very basic signature function.#1043
Merged
dpgeorge merged 1 commit intomicropython:masterfrom Oct 1, 2025
Merged
inspect: Implement a very basic signature function.#1043dpgeorge merged 1 commit intomicropython:masterfrom
dpgeorge merged 1 commit intomicropython:masterfrom
Conversation
Member
Author
|
@WebReflection @ntoll this will allow you to use |
|
Bravo @dpgeorge 🎉 - this is really helpful for us (and removes another "messy" conditional around the type of interpreter in our code). 🏆 |
This implements a very basic `inspect.signature()` function.
At the moment it returns only a simple `Signature` instance with a
`parameters` attribute that holds an `OrderedDict` whose length matches the
arity of the input function (the number of arguments it takes).
So, the following code works and is compatible with CPython:
def f(a, b, *, c):
pass
print(len(inspect.signature(f).parameters))
That should print 3.
Signed-off-by: Damien George <damien@micropython.org>
854f976 to
b4565b4
Compare
dpgeorge
added a commit
to dpgeorge/micropython-lib
that referenced
this pull request
Nov 24, 2025
This is a follow-up to b4565b4 (PR micropython#1043), to support closures, async functions and generators in `inspect.signature`. Signed-off-by: Damien George <damien@micropython.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This implements a very basic
inspect.signature()function.At the moment it returns only a simple
Signatureinstance with aparametersattribute that holds anOrderedDictwhose length matches the arity of the input function (the number of arguments it takes).So, the following code works and is compatible with CPython:
That should print
3.I tested this on unix 64-bit, unix nanbox (32-bit), webassembly (32-bit) and a 32-bit bare-metal target.
The main aim here is to support PyScript which is currently using a very unreliable hack to work out if a Python function takes arguments or not: https://github.com/pyscript/pyscript/blob/main/core/src/stdlib/pyscript/events.py#L96-L126