Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mwhooker committed Nov 22, 2013
1 parent f28f437 commit a7a362e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion jsonselect/jsonselect.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def lex(input, scanner=SCANNER):
if not len(tokens):
raise LexingError("no input parsed.")
if len(rest):
print tokens
raise LexingError("found leftover tokens: (%s, %s)" % (tokens, rest))
return [tok for tok in tokens if tok[0] != 'empty']

Expand Down
3 changes: 0 additions & 3 deletions tests/test_conformance.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ def read_output(output_f):

def create_ctest(selector, input, output):
def _test(self=None):
if not self:
print "WFT"
parser = jsonselect.Parser(input)

try:
Expand Down Expand Up @@ -156,7 +154,6 @@ def generate():

for test in ctests(os.path.join('conformance_tests', 'custom'),
'custom'):
print test
add_ctest(test)


Expand Down

0 comments on commit a7a362e

Please sign in to comment.