Pop value from the stack (thread dependent) >>> pushValue('foobar') >>> popValue() 'foobar'
()
| 2760 | raise exception |
| 2761 | |
| 2762 | def popValue(): |
| 2763 | """ |
| 2764 | Pop value from the stack (thread dependent) |
| 2765 | |
| 2766 | >>> pushValue('foobar') |
| 2767 | >>> popValue() |
| 2768 | 'foobar' |
| 2769 | """ |
| 2770 | |
| 2771 | retVal = None |
| 2772 | |
| 2773 | try: |
| 2774 | retVal = getCurrentThreadData().valueStack.pop() |
| 2775 | except IndexError: |
| 2776 | pass |
| 2777 | |
| 2778 | return retVal |
| 2779 | |
| 2780 | def wasLastResponseDBMSError(): |
| 2781 | """ |
searching dependent graphs…