From 5d1770ee24c7181259fbc5c427f73da037bb8eee Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 5 Aug 1997 02:23:48 +0000 Subject: [PATCH] Py_Cleanup() is now Py_Finalize(). --- Modules/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/main.c b/Modules/main.c index 5140c4ff769..00b2e4c0794 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; }