Removing unused methods

This commit is contained in:
Miroslav Stampar
2017-11-06 13:53:35 +01:00
parent f9e80adcef
commit 18d78a34cc
5 changed files with 6 additions and 34 deletions

View File

@@ -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