From 7489e1b9c2f0ef8f90dc5cee9f1a426911551007 Mon Sep 17 00:00:00 2001 From: Rebecca Chen Date: Tue, 5 Jan 2021 13:38:41 -0800 Subject: [PATCH] Remove __del__ from the tkinter _Image protocol. (#4909) See https://github.com/python/typeshed/pull/4766#issuecomment-753341778. --- stdlib/3/tkinter/__init__.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stdlib/3/tkinter/__init__.pyi b/stdlib/3/tkinter/__init__.pyi index 5a9e3b8a7..98234f966 100644 --- a/stdlib/3/tkinter/__init__.pyi +++ b/stdlib/3/tkinter/__init__.pyi @@ -2384,7 +2384,6 @@ class OptionMenu(Menubutton): class _Image(Protocol): tk: _tkinter.TkappType - def __del__(self) -> None: ... def height(self) -> int: ... def width(self) -> int: ...