Skip to content

Commit

Permalink
Taking out test statements
Browse files Browse the repository at this point in the history
  • Loading branch information
bannsec committed Mar 31, 2016
1 parent dd87ad9 commit 9802af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyState/ListComp.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

logger = logging.getLogger("pyState:ListComp")

import astunparse
#import astunparse

def _findAllInputVariables(haystack):
"""
Expand Down Expand Up @@ -114,7 +114,7 @@ def handle(state,element,ctx=None):
for inputVar in allInputVars:
fun.args.args.append(ast.arg(inputVar.id,0))

print(astunparse.unparse(fun))
#print(astunparse.unparse(fun))

# Call our new function.
state.Call(ast.parse("blergy({0})".format(','.join([x.id for x in allInputVars]))).body[0].value,func=fun,retObj=retObj)
Expand Down

0 comments on commit 9802af7

Please sign in to comment.