Files
typeshed/stdlib/2
Philipp Hahn 84147ec9cb sockeserver: Add undocumented internals (#3924)
the `rfile` and `wfile` members are already implemented by
StreamRequestHandler. In addition to them several (undocumented)
class and instance variables exist according to
<https://github.com/python/cpython/blob/master/Lib/socketserver.py#L742>:
- `rbufsize`
- `wbufsize`
- `timeout`
- `disable_nagle_algorithm`
- `packet` and `socket` for datagrams

The already exist with Python 2.7
<https://github.com/python/cpython/blob/2.7/Lib/SocketServer.py#L677>

```mermaid
classDiagram
BaseRequestHandler <|-- DatagramRequestHandler
BaseRequestHandler <|-- StreamRequestHandler
StreamRequestHandler <|-- BaseHTTPRequestHandler
```
2020-04-14 13:22:40 -07:00
..
2016-10-26 16:24:49 -07:00
2016-10-26 16:24:49 -07:00
2019-10-29 19:52:05 -07:00
2016-10-26 16:24:49 -07:00
2016-10-26 16:24:49 -07:00
2019-11-20 10:29:05 +00:00
2017-04-30 14:16:30 -07:00
2016-10-26 16:24:49 -07:00
2019-12-04 13:07:24 -08:00
2016-10-26 16:24:49 -07:00
2018-10-24 07:20:53 -07:00
2020-02-21 11:55:11 +01:00
2018-11-23 09:51:44 -08:00