This commit is contained in:
Alon Zakai 2006-12-02 21:12:14 +00:00
parent 0a87faee59
commit 842db51672

View File

@ -49,6 +49,9 @@ class preferences:
def __init__:
self.max_connections = 60 # Etc. etc. etc.
# Prepare queue (queue is pickled, just like everything else)
self.queue = [] # queue[x] is the unique_ID of the x-th queue position. Simple.
class manager:
def __init__(self, pref_filename):
print "Init"
@ -63,9 +66,6 @@ class manager:
except IOError:
self.preferences = new preferences()
# Prepare queue
self.queue = [] # queue[x] is the unique_ID of the x-th queue position. Simple.
# How does the queue get updated? Use biology
def quit(self):