Return the name and value that the sid needs to have in a GET or POST request
(self)
| 94 | return self.__newsid() |
| 95 | |
| 96 | def getsid(self): |
| 97 | """ |
| 98 | Return the name and value that the sid needs to have in a GET or POST |
| 99 | request |
| 100 | """ |
| 101 | if not self.started: |
| 102 | raise NotStarted("Session must be started") |
| 103 | return (S_ID, self.__sid) |
| 104 | |
| 105 | def start(self): |
| 106 | """Start the session""" |
no test coverage detected