summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-05 02:23:48 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-05 02:23:48 (GMT)
commit5d1770ee24c7181259fbc5c427f73da037bb8eee (patch)
tree0297366c799cec8681f5f953c0fea960931284f2 /Modules/main.c
parentcc283f56a79e85fc7163f455b2ab4e0c28e93ff5 (diff)
downloadcpython-5d1770ee24c7181259fbc5c427f73da037bb8eee.zip
cpython-5d1770ee24c7181259fbc5c427f73da037bb8eee.tar.gz
cpython-5d1770ee24c7181259fbc5c427f73da037bb8eee.tar.bz2
Py_Cleanup() is now Py_Finalize().
Diffstat (limited to 'Modules/main.c')
-rw-r--r--Modules/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 5140c4f..00b2e4c 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, "<stdin>") != 0;
- Py_Cleanup();
+ Py_Finalize();
return sts;
}