diff --git a/codebreak/__init__.py b/__init__.py similarity index 100% rename from codebreak/__init__.py rename to __init__.py diff --git a/bitarray.py b/bitarray.py deleted file mode 100644 index 79be6e0..0000000 --- a/bitarray.py +++ /dev/null @@ -1,10 +0,0 @@ -from StringIO import StringIO - -class bitvector: - def __init__(self, txt): - self.txt = txt - - def __getitem__(self, idx): - base, offset = divmod(idx, 8) - o = ord(self.txt[base]) - return (o >> offset) & 1 diff --git a/codebreak/crypto.py b/crypto.py similarity index 100% rename from codebreak/crypto.py rename to crypto.py diff --git a/codebreak/resequence.py b/resequence.py similarity index 100% rename from codebreak/resequence.py rename to resequence.py diff --git a/startup.py b/startup.py deleted file mode 100644 index 26bd888..0000000 --- a/startup.py +++ /dev/null @@ -1,8 +0,0 @@ -try: - import readline -except ImportError: - print "Module readline not available." -else: - import rlcompleter - readline.parse_and_bind("tab: complete") -