Override in subclass to insert CGI variables in 'self.environ
(self)
| 435 | raise NotImplementedError |
| 436 | |
| 437 | def add_cgi_vars(self): |
| 438 | """Override in subclass to insert CGI variables in 'self.environ'""" |
| 439 | raise NotImplementedError |
| 440 | |
| 441 | |
| 442 | class SimpleHandler(BaseHandler): |