(obj)
| 114 | |
| 115 | |
| 116 | def _callable(obj): |
| 117 | return hasattr(obj, '__call__') or hasattr(obj, '__bases__') |
| 118 | |
| 119 | # silence Python 2.6 buggy warnings about Exception.message |
| 120 | if _sys.version_info[:2] == (2, 6): |
no outgoing calls
no test coverage detected