Staging
v0.8.1
https://github.com/python/cpython
Revision d065a13a96428c8b6cc2809aed9ab2ec08c9d8d5 authored by Fred Drake on 09 April 2003, 18:19:24 UTC, committed by Fred Drake on 09 April 2003, 18:19:24 UTC
1 parent 273888e
Raw File
Tip revision: d065a13a96428c8b6cc2809aed9ab2ec08c9d8d5 authored by Fred Drake on 09 April 2003, 18:19:24 UTC
Backport reference leak fix from HEAD revision 1.79.
Tip revision: d065a13
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern DL_EXPORT(int) Py_Main(int, char **);

int
main(int argc, char **argv)
{
	return Py_Main(argc, argv);
}
back to top