From: Guido van Rossum Date: Mon, 16 Dec 1991 13:06:13 +0000 (+0000) Subject: Hide forms before discarding them. X-Git-Tag: v0.9.8~697 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75f8968ee7a4121ad9afe1be1e4f95ac04b68974;p=thirdparty%2FPython%2Fcpython.git Hide forms before discarding them. --- diff --git a/Modules/flmodule.c b/Modules/flmodule.c index a4af2df189d7..92373715ed49 100644 --- a/Modules/flmodule.c +++ b/Modules/flmodule.c @@ -1831,6 +1831,7 @@ form_dealloc(f) formobject *f; { releaseobjects(f->ob_form); + fl_hide_form(f->ob_form); fl_free_form(f->ob_form); DEL(f); }