A thread-local subclass of :class:`BaseRequest` with a different set of attributes for each thread. There is usually only one global instance of this class (:data:`request`). If accessed during a request/response cycle, this instance always refers to the *current* re
| 1675 | |
| 1676 | |
| 1677 | class LocalRequest(BaseRequest): |
| 1678 | ''' A thread-local subclass of :class:`BaseRequest` with a different |
| 1679 | set of attributes for each thread. There is usually only one global |
| 1680 | instance of this class (:data:`request`). If accessed during a |
| 1681 | request/response cycle, this instance always refers to the *current* |
| 1682 | request (even on a multithreaded server). ''' |
| 1683 | bind = BaseRequest.__init__ |
| 1684 | environ = local_property() |
| 1685 | |
| 1686 | |
| 1687 | class LocalResponse(BaseResponse): |
no test coverage detected