Staging
v0.5.1
https://github.com/python/cpython
Revision 612743192e317aadc6c0b7a91100ed2bca244c38 authored by Andrew M. Kuchling on 03 October 2006, 18:29:35 UTC, committed by Andrew M. Kuchling on 03 October 2006, 18:29:35 UTC
Fix memory leaks in some conditions.

Reported by Klocwork #152.
1 parent c6994f2
Raw File
Tip revision: 612743192e317aadc6c0b7a91100ed2bca244c38 authored by Andrew M. Kuchling on 03 October 2006, 18:29:35 UTC
[Backport r50677 | neal.norwitz]
Tip revision: 6127431
ccpython.cc
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern "C"
DL_EXPORT(int) Py_Main( int argc, char *argv[] );

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