Skip to content

Commit

Permalink
Add __code__ to types.MethodType (#12749)
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Oct 8, 2024
1 parent 8bc20e7 commit 1f4031c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions stdlib/@tests/stubtest_allowlists/common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions stdlib/types.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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]: ...
Expand Down

0 comments on commit 1f4031c

Please sign in to comment.