(frame)
| 209 | |
| 210 | |
| 211 | def _is_django_context_get_call(frame): |
| 212 | try: |
| 213 | if "self" not in frame.f_locals: |
| 214 | return False |
| 215 | |
| 216 | cls = frame.f_locals["self"].__class__ |
| 217 | |
| 218 | return _inherits(cls, "BaseContext") |
| 219 | except: |
| 220 | pydev_log.exception() |
| 221 | return False |
| 222 | |
| 223 | |
| 224 | def _is_django_resolve_call(frame): |
no test coverage detected