mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-28 22:02:24 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -2,7 +2,7 @@ import asyncore
|
||||
from abc import abstractmethod
|
||||
|
||||
class simple_producer:
|
||||
def __init__(self, data: bytes, buffer_size: int = ...) -> None: ...
|
||||
def __init__(self, data: bytes, buffer_size: int = 512) -> None: ...
|
||||
def more(self) -> bytes: ...
|
||||
|
||||
class async_chat(asyncore.dispatcher):
|
||||
|
||||
Reference in New Issue
Block a user