aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-12-01 13:30:23 +0100
committercedricbonhomme <devnull@localhost>2010-12-01 13:30:23 +0100
commit2203ee64b15b0cb2457a8e12e9e705c835e8d0ca (patch)
tree67b74213e89e185077f488eb3d60e70750666c28 /utils.py
parentPerformance improvement. collections.defaultdict used in order to sotr articles. (diff)
downloadnewspipe-2203ee64b15b0cb2457a8e12e9e705c835e8d0ca.tar.gz
newspipe-2203ee64b15b0cb2457a8e12e9e705c835e8d0ca.tar.bz2
newspipe-2203ee64b15b0cb2457a8e12e9e705c835e8d0ca.zip
Performance improvement. collections.defaultdict used in order to sotr articles. (2)
Diffstat (limited to 'utils.py')
-rwxr-xr-xutils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/utils.py b/utils.py
index 1c879b31..7c69fca5 100755
--- a/utils.py
+++ b/utils.py
@@ -379,7 +379,6 @@ def load_feed():
# add the informations about the current article
# to the list of articles of the current feed
- #articles[feed_id] = articles.get(feed_id, [])
articles[feed_id].append(article_list)
# informations about a feed
bgstack15