Staging
v0.5.1
Revision 6de7d0c3388f93288449449cc2a711358ffc4529 authored by Fred Drake on 18 December 1998, 19:46:59 UTC, committed by Fred Drake on 18 December 1998, 19:46:59 UTC
string we wanted to resize is set to NULL.  Don't Py_DECREF() those
variables!  (5 places)
1 parent 654387e
Raw File
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern DL_EXPORT(int) Py_Main();

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