Unset the name from the session
(self, name)
| 59 | return name in self |
| 60 | |
| 61 | def unset(self, name): |
| 62 | """Unset the name from the session""" |
| 63 | if not self.started: |
| 64 | raise NotStarted("Session must be started") |
| 65 | del self[name] |
| 66 | |
| 67 | @staticmethod |
| 68 | def __newsid(): |