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: |