From 1f4031cc9663fa2dddfdbb57b538dfd2ea975b60 Mon Sep 17 00:00:00 2001 From: Avasam Date: Tue, 8 Oct 2024 04:30:49 -0400 Subject: [PATCH] Add `__code__` to `types.MethodType` (#12749) --- stdlib/@tests/stubtest_allowlists/common.txt | 1 + stdlib/types.pyi | 2 ++ 2 files changed, 3 insertions(+) diff --git a/stdlib/@tests/stubtest_allowlists/common.txt b/stdlib/@tests/stubtest_allowlists/common.txt index 877307b96..55dbdbae4 100644 --- a/stdlib/@tests/stubtest_allowlists/common.txt +++ b/stdlib/@tests/stubtest_allowlists/common.txt @@ -494,6 +494,7 @@ typing(_extensions)?\.TextIO\.newlines typing(_extensions)?\.(Async)?ContextManager types.MethodType.__closure__ # read-only but not actually a property; stubtest thinks it doesn't exist. +types.MethodType.__code__ # read-only but not actually a property; stubtest thinks it doesn't exist. types.MethodType.__defaults__ # read-only but not actually a property; stubtest thinks it doesn't exist. types.ModuleType.__dict__ # read-only but not actually a property; stubtest thinks it's a mutable attribute. types.ModuleType.__getattr__ # this doesn't exist at runtime diff --git a/stdlib/types.pyi b/stdlib/types.pyi index 0f6592a98..0c5a43617 100644 --- a/stdlib/types.pyi +++ b/stdlib/types.pyi @@ -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]: ...