Is the variable set in the session?
(self, name)
| 52 | self.path = os.path.join(S_DIR, sid+S_EXT) |
| 53 | |
| 54 | def isset(self, name): |
| 55 | """Is the variable set in the session?""" |
| 56 | if not self.started: |
| 57 | raise NotStarted("Session must be started") |
| 58 | |
| 59 | return name in self |
| 60 | |
| 61 | def unset(self, name): |
| 62 | """Unset the name from the session""" |
no test coverage detected