return the signature of a partial object
(part)
| 52 | |
| 53 | |
| 54 | def signature(part): |
| 55 | """ return the signature of a partial object """ |
| 56 | return (part.func, part.args, part.keywords, part.__dict__) |
| 57 | |
| 58 | class MyTuple(tuple): |
| 59 | pass |
no outgoing calls
no test coverage detected
searching dependent graphs…