Go through the names of all the session variables
(self)
| 191 | return self.data.__contains__(item) |
| 192 | |
| 193 | def __iter__(self): |
| 194 | """Go through the names of all the session variables""" |
| 195 | if not self.started: |
| 196 | raise NotStarted("Session must be started") |
| 197 | return self.data.__iter__() |
| 198 | |
| 199 | def start(): |
| 200 | global SESSION |