Helpviewer/CookieJar/CookieModel.py

changeset 37
bfe92e414977
parent 13
1af94a91f439
child 487
4d41d03d3d00
child 792
a13346916170
equal deleted inserted replaced
36:835407b77a50 37:bfe92e414977
80 cookie = lst[index.row()] 80 cookie = lst[index.row()]
81 col = index.column() 81 col = index.column()
82 if col == 0: 82 if col == 0:
83 return cookie.domain() 83 return cookie.domain()
84 elif col == 1: 84 elif col == 1:
85 return cookie.name() 85 return bytes(cookie.name()).decode()
86 elif col == 2: 86 elif col == 2:
87 return cookie.path() 87 return cookie.path()
88 elif col == 3: 88 elif col == 3:
89 return cookie.isSecure() 89 return cookie.isSecure()
90 elif col == 4: 90 elif col == 4:

eric ide

mercurial