]> granicus.if.org Git - python/commit
Py_Initialize(): Now that standard exceptions are builtin, we don't
authorBarry Warsaw <barry@python.org>
Thu, 25 May 2000 23:09:49 +0000 (23:09 +0000)
committerBarry Warsaw <barry@python.org>
Thu, 25 May 2000 23:09:49 +0000 (23:09 +0000)
commitf242aa0d1e7625a7ccbbd629bae2d88a95408ad3
tree0c53288b85e2e9c3bc8eb174129d1b57a8006c0c
parentc094ac856f7031eae727fa200241da0c88d29951
Py_Initialize(): Now that standard exceptions are builtin, we don't
need two phase init or fini of the builtin module.  Change the call of
_PyBuiltin_Init_1() to _PyBuiltin_Init().  Add a call to
init_exceptions().

Py_Finalize(): Don't call _PyBuiltin_Fini_1().  Instead call
fini_exceptions() but move this to before the thread state is
cleared.
Python/pythonrun.c