switch to lower-case "# undocumented" comments (#5871)

This commit is contained in:
Akuli
2021-08-07 18:00:41 +03:00
committed by GitHub
parent 39ede0242c
commit e3f662b648
8 changed files with 28 additions and 28 deletions

View File

@@ -99,16 +99,16 @@ class BaseRequestHandler:
def finish(self) -> None: ...
class StreamRequestHandler(BaseRequestHandler):
rbufsize: ClassVar[int] # Undocumented
wbufsize: ClassVar[int] # Undocumented
timeout: ClassVar[Optional[float]] # Undocumented
disable_nagle_algorithm: ClassVar[bool] # Undocumented
connection: SocketType # Undocumented
rbufsize: ClassVar[int] # undocumented
wbufsize: ClassVar[int] # undocumented
timeout: ClassVar[Optional[float]] # undocumented
disable_nagle_algorithm: ClassVar[bool] # undocumented
connection: SocketType # undocumented
rfile: BinaryIO
wfile: BinaryIO
class DatagramRequestHandler(BaseRequestHandler):
packet: SocketType # Undocumented
socket: SocketType # Undocumented
packet: SocketType # undocumented
socket: SocketType # undocumented
rfile: BinaryIO
wfile: BinaryIO

View File

@@ -6,7 +6,7 @@ from typing import Any, Dict, Optional, Tuple, Union, overload
# cyclic dependence with asynchat
_maptype = Dict[int, Any]
socket_map: _maptype = ... # Undocumented
socket_map: _maptype = ... # undocumented
class ExitNow(Exception): ...

View File

@@ -127,7 +127,7 @@ def quote(s: AnyStr, safe: Text = ...) -> AnyStr: ...
def quote_plus(s: AnyStr, safe: Text = ...) -> AnyStr: ...
def urlencode(query: Union[Sequence[Tuple[Any, Any]], Mapping[Any, Any]], doseq=...) -> str: ...
def getproxies() -> Mapping[str, str]: ...
def proxy_bypass(host: str) -> Any: ... # Undocumented
def proxy_bypass(host: str) -> Any: ... # undocumented
# Names in __all__ with no definition:
# basejoin