Bruno Guillon

Results 2 comments of Bruno Guillon

#### Workaround Here is my best workaround: ```python @forge.modify("b", name="a") @forge.copy(forge.modify("a", name="b")) def g(b): pass ``` we could also do: ```python @forge.synthetize(forge.arg("a", interface_name="b"), *forge.fsignature(f)[1:]) def g(b): pass ``` but it...

#### Suggestion About this topic, I also have a suggestion: Copying a signature of an existing function is one of the nicest way to set the signature of a new...