Skip to content

Commit

Permalink
Remove a forgotten print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
benallard committed Sep 22, 2011
1 parent 4ea152b commit 4288fe6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pythoncardx/framework/util/intx.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def makeTransientIntArray(length, event):
def setInt(bArray, bOff, iValue1, iValue2):
# ints are transmited as two params ...
iVal = JCint.makeInt(iValue1, iValue2)
print bArray, bOff, iVal
bArray[bOff] = (iVal >> 24) & 0xff
bArray[bOff + 1] = iVal >> 16 & 0xff
bArray[bOff + 2] = iVal >> 8 & 0xff
Expand Down

0 comments on commit 4288fe6

Please sign in to comment.