mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Fix annotations with literal values (#3411)
This commit is contained in:
committed by
Jelle Zijlstra
parent
6a7c2011cc
commit
87d7dd3d95
@@ -2,9 +2,9 @@
|
||||
from typing import Tuple, Callable, Optional
|
||||
from types import TracebackType
|
||||
|
||||
BUFSIZE: int = ...
|
||||
PIPE: int = ...
|
||||
STDOUT: int = ...
|
||||
BUFSIZE: int
|
||||
PIPE: int
|
||||
STDOUT: int
|
||||
|
||||
def pipe(*, duplex: bool = ..., overlapped: Tuple[bool, bool] = ..., bufsize: int = ...) -> Tuple[int, int]: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user