While generally fullargsspec works better than signature, since the latter can break when dealing with things such as code bindings, I discovered the hard way that the former breaks in some cases, like our friend NMF, and return an empty list of args and kwargs.
I have no clue why it does break.
Notwithstanding, I replaced it with signature, which seems more stable in these use cases.
Hello, I did a 🍌.
While generally
fullargsspec
works better thansignature
, since the latter can break when dealing with things such as code bindings, I discovered the hard way that the former breaks in some cases, like our friendNMF
, and return an empty list of args and kwargs.I have no clue why it does break.
Notwithstanding, I replaced it with
signature
, which seems more stable in these use cases.