Fix default value of input, remove now unused allowlist entry for epoll (#9742)

This commit is contained in:
Shantanu
2023-02-16 15:55:31 -08:00
committed by GitHub
parent 660c832fa4
commit 5c54e52e23
8 changed files with 6 additions and 5 deletions

View File

@@ -1380,7 +1380,7 @@ def hash(__obj: object) -> int: ...
def help(request: object = ...) -> None: ...
def hex(__number: int | SupportsIndex) -> str: ...
def id(__obj: object) -> int: ...
def input(__prompt: object = None) -> str: ...
def input(__prompt: object = "") -> str: ...
class _GetItemIterable(Protocol[_T_co]):
def __getitem__(self, __i: int) -> _T_co: ...