(payload, expression)
| 69 | from thirdparty import six |
| 70 | |
| 71 | def _goDns(payload, expression): |
| 72 | value = None |
| 73 | |
| 74 | if conf.dnsDomain and kb.dnsTest is not False and not kb.testMode and Backend.getDbms() is not None: |
| 75 | if kb.dnsTest is None: |
| 76 | dnsTest(payload) |
| 77 | |
| 78 | if kb.dnsTest: |
| 79 | value = dnsUse(payload, expression) |
| 80 | |
| 81 | return value |
| 82 | |
| 83 | def _goInference(payload, expression, charsetType=None, firstChar=None, lastChar=None, dump=False, field=None): |
| 84 | start = time.time() |
no test coverage detected
searching dependent graphs…