Returns whether the value contains explicit 'NULL' value >>> isNullValue(u'NULL') True >>> isNullValue(u'foobar') False
(value)
| 4368 | return value is None |
| 4369 | |
| 4370 | def isNullValue(value): |
| 4371 | """ |
| 4372 | Returns whether the value contains explicit 'NULL' value |
| 4373 | |
| 4374 | >>> isNullValue(u'NULL') |
| 4375 | True |
| 4376 | >>> isNullValue(u'foobar') |
| 4377 | False |
| 4378 | """ |
| 4379 | |
| 4380 | return hasattr(value, "upper") and value.upper() == NULL |
| 4381 | |
| 4382 | def expandMnemonics(mnemonics, parser, args): |
| 4383 | """ |
no outgoing calls
searching dependent graphs…