def remove()

in archive/preprocess/growphrase.py [0:0]


	def remove(self, key, value):
		h = self.hashtable
		if key in h and value in h[key]:
			h[key].remove(value)
		if len(h[key]) == 0:
			del h[key]