mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Add __code__ to types.MethodType (#12749)
This commit is contained in:
@@ -424,6 +424,8 @@ class MethodType:
|
||||
@property
|
||||
def __closure__(self) -> tuple[CellType, ...] | None: ... # inherited from the added function
|
||||
@property
|
||||
def __code__(self) -> CodeType: ... # inherited from the added function
|
||||
@property
|
||||
def __defaults__(self) -> tuple[Any, ...] | None: ... # inherited from the added function
|
||||
@property
|
||||
def __func__(self) -> Callable[..., Any]: ...
|
||||
|
||||
Reference in New Issue
Block a user