Staging
v0.5.1
Revision 2eedddc3e860ef4ce77a1117576d279bf2781232 authored by Fred Drake on 16 March 2002, 06:26:20 UTC, committed by Fred Drake on 16 March 2002, 06:26:20 UTC
Added examples of positive lookbehind assertions.
This closes SF bug #529708.
1 parent 585a30c
Raw File
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