Get the signature from obj
(obj)
| 129 | |
| 130 | |
| 131 | def get_object_signature(obj): |
| 132 | """ |
| 133 | Get the signature from obj |
| 134 | |
| 135 | """ |
| 136 | try: |
| 137 | sig = formatargspec(*getargspec(obj)) |
| 138 | except TypeError: |
| 139 | sig = '' |
| 140 | return sig |
| 141 | |
| 142 | |
| 143 | ############################################################################### |
no test coverage detected