Iterate through the tickets in the ccache
(self)
| 2591 | self.import_krb(res, _inplace=i) |
| 2592 | |
| 2593 | def iter_tickets(self): |
| 2594 | """ |
| 2595 | Iterate through the tickets in the ccache |
| 2596 | """ |
| 2597 | for i in range(len(self.ccache.credentials)): |
| 2598 | yield self.export_krb(i) |
no test coverage detected