Bug359 修改位置pickle_idea2.py line71 #28

Closed
zhangkeli wants to merge 13 commits from bug359-zhangkeli into master
6 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
from WordFreq import WordFreq
from wordfreqCMD import youdao_link, sort_in_descending_order
from UseSqlite import InsertQuery, RecordQuery

View File

@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
import hashlib
import string
from datetime import datetime, timedelta

View File

@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
'''
Yaml.py
配置文件包括:

View File

@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
###########################################################################
# Copyright 2019 (C) Hui Lan <hui.lan@cantab.net>
# Written permission must be obtained from the author for commercial uses.

View File

@ -68,7 +68,7 @@ def save_frequency_to_pickle(d, pickle_fname):
d2 = {}
for k in d:
if not k in exclusion_lst and not k.isnumeric() and not len(k) < 2:
d2[k] = list(sorted(set(d[k])))
d2[k] = list(sorted(d[k])) # This code sorts the values of the dictionary 'd' associated with the key 'k' and assigns the resulting sorted list to the key 'k' in the dictionary 'd2'. However, it does not remove duplicates from the original list, which means that it keeps track of all counts even when the same value is clicked multiple times in a row.
pickle.dump(d2, f)
f.close()

View File

@ -1,3 +1,4 @@
# -*- coding: UTF-8 -*-
###########################################################################
# Copyright 2019 (C) Hui Lan <hui.lan@cantab.net>
# Written permission must be obtained from the author for commercial uses.