Removed left-over comment

This commit is contained in:
Crista Lopes
2013-11-07 13:48:04 -08:00
parent 560f14834b
commit 182f80f4b8

View File

@@ -62,7 +62,6 @@ def remove_stop_words():
heap['stop_words'] = stack.pop()
# Again, this is too high-level for this style, but using it
# for doing this fast and short. Left as exercise.
#stack.append([w for w in stack.pop() if not w in heap['stop_words']])
for w in stack.pop():
if w not in heap['stop_words']:
stack.append(w)