Files
typeshed/stdlib/3
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
..
2020-03-06 11:01:19 +01:00
2020-03-03 10:48:52 +01:00
2020-02-01 09:25:56 -08:00
2020-04-04 21:26:47 +02:00
2019-10-29 19:52:05 -07:00
2019-07-27 10:58:21 +02:00
2020-01-22 10:20:40 +01:00
2020-01-21 17:52:38 -08:00
2019-11-20 10:29:05 +00:00
2020-02-22 12:53:16 +01:00
2019-07-27 10:58:21 +02:00
2020-02-29 22:03:50 -08:00
2017-04-30 14:16:30 -07:00
2020-02-05 19:14:30 -08:00
2020-04-01 10:47:36 -07:00
2020-02-21 11:55:11 +01:00
2020-02-21 11:57:07 +01:00
2018-08-18 19:25:48 -07:00
2020-02-21 21:23:34 -08:00
2020-03-06 11:02:18 +01:00
2019-07-27 10:58:21 +02:00
2020-02-21 20:58:42 -08:00
2020-02-21 20:35:37 -08:00
2020-03-06 11:12:24 +01:00