Quick fix (revert..)

This commit is contained in:
Bernardo Damele 2011-07-06 11:32:12 +00:00
parent 93b296e02c
commit 6f6038b534

View File

@ -1925,7 +1925,9 @@ def pushValue(value):
Push value to the stack (thread dependent)
"""
getCurrentThreadData().valueStack.append(copy.deepcopy(value))
# TODO: quick fix
#getCurrentThreadData().valueStack.append(copy.deepcopy(value))
getCurrentThreadData().valueStack.append(value)
def popValue():
"""