mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
switch to lower-case "# undocumented" comments (#5871)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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): ...
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user