Skip to content

Commit d6237d0

Browse files
authored
Add constructor to CellType (#9399)
1 parent 154452f commit d6237d0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/types.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ _V_co = TypeVar("_V_co", covariant=True)
6868

6969
@final
7070
class _Cell:
71+
if sys.version_info >= (3, 8):
72+
def __init__(self, __contents: object = ...) -> None: ...
73+
7174
__hash__: ClassVar[None] # type: ignore[assignment]
7275
cell_contents: Any
7376

0 commit comments

Comments
 (0)