From 182f80f4b854a651710dd687710ee6e78949d36d Mon Sep 17 00:00:00 2001 From: Crista Lopes Date: Thu, 7 Nov 2013 13:48:04 -0800 Subject: [PATCH] Removed left-over comment --- 02-go-forth/tf-02.py | 1 - 1 file changed, 1 deletion(-) diff --git a/02-go-forth/tf-02.py b/02-go-forth/tf-02.py index 35df1b7..56685e9 100755 --- a/02-go-forth/tf-02.py +++ b/02-go-forth/tf-02.py @@ -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)