mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Removing unused methods
This commit is contained in:
parent
f9e80adcef
commit
18d78a34cc
5 changed files with 6 additions and 34 deletions
|
|
@ -3428,21 +3428,6 @@ def listToStrValue(value):
|
|||
|
||||
return retVal
|
||||
|
||||
def getExceptionFrameLocals():
|
||||
"""
|
||||
Returns dictionary with local variable content from frame where exception has been raised
|
||||
"""
|
||||
|
||||
retVal = {}
|
||||
|
||||
if sys.exc_info():
|
||||
trace = sys.exc_info()[2]
|
||||
while trace.tb_next:
|
||||
trace = trace.tb_next
|
||||
retVal = trace.tb_frame.f_locals
|
||||
|
||||
return retVal
|
||||
|
||||
def intersect(valueA, valueB, lowerCase=False):
|
||||
"""
|
||||
Returns intersection of the array-ized values
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue