Skip to content

Commit d39e58c

Browse files
authored
asyncio.subprocess: returncode is Optional (#3981)
1 parent 0909343 commit d39e58c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/3/asyncio/subprocess.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Process:
3030
protocol: protocols.BaseProtocol,
3131
loop: events.AbstractEventLoop) -> None: ...
3232
@property
33-
def returncode(self) -> int: ...
33+
def returncode(self) -> Optional[int]: ...
3434
async def wait(self) -> int: ...
3535
def send_signal(self, signal: int) -> None: ...
3636
def terminate(self) -> None: ...

0 commit comments

Comments
 (0)