(self, var)
| 149 | return ret |
| 150 | |
| 151 | def get_names(self, var): |
| 152 | used___dict__ = False |
| 153 | try: |
| 154 | names = dir(var) |
| 155 | except Exception: |
| 156 | names = [] |
| 157 | if not names: |
| 158 | if hasattr_checked(var, "__dict__"): |
| 159 | names = list(var.__dict__) |
| 160 | used___dict__ = True |
| 161 | return names, used___dict__ |
| 162 | |
| 163 | def _get_py_dictionary(self, var, names=None, used___dict__=False): |
| 164 | """ |
no test coverage detected