From: Guido van Rossum Date: Tue, 5 Aug 1997 02:23:48 +0000 (+0000) Subject: Py_Cleanup() is now Py_Finalize(). X-Git-Tag: v1.5a3~138 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d1770ee24c7181259fbc5c427f73da037bb8eee;p=python Py_Cleanup() is now Py_Finalize(). --- diff --git a/Modules/main.c b/Modules/main.c index 5140c4ff76..00b2e4c079 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -241,7 +241,7 @@ Py_Main(argc, argv) (filename != NULL || command != NULL)) sts = PyRun_AnyFile(stdin, "") != 0; - Py_Cleanup(); + Py_Finalize(); return sts; }