Staging
v0.5.1
https://github.com/python/cpython
Revision d751105a36cae2855dc5fe1d6335d838c27f1de5 authored by Raymond Hettinger on 05 October 2002, 21:14:12 UTC, committed by Raymond Hettinger on 05 October 2002, 21:14:12 UTC
Made conversion failure error messages consistent between types.
1 parent c52a36f
Raw File
Tip revision: d751105a36cae2855dc5fe1d6335d838c27f1de5 authored by Raymond Hettinger on 05 October 2002, 21:14:12 UTC
Backport 2.103:
Tip revision: d751105
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