Unverified Commit 674cc7f2 by Jake R Committed by GitHub

Removes commented out code

parent 915ef0f2
...@@ -240,7 +240,6 @@ class Entropy(Module): ...@@ -240,7 +240,6 @@ class Entropy(Module):
if data: if data:
data = data.encode('latin-1') data = data.encode('latin-1')
length = len(data) length = len(data)
# seen = dict(((chr(x), 0) for x in range(0, 256)))
seen = [0] * 256 seen = [0] * 256
for byte in data: for byte in data:
seen[byte] += 1 seen[byte] += 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment