From: Guillaume Pellerin Date: Sun, 9 Sep 2007 21:29:21 +0000 (+0000) Subject: Remove tools.py X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8b923064d52fc396c135051677b4d1dd0e2fcffc;p=deefuzzer.git Remove tools.py --- diff --git a/tools.py b/tools.py deleted file mode 100755 index 98c038b..0000000 --- a/tools.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/python - -import sys, os, random - -def randrange(start, stop): - values = range(start, stop) - random.shuffle(values) - while values: - yield values.pop() - raise StopIteration - - -