Staging
v0.5.1
https://github.com/python/cpython
Revision 0ab7093be266f6dcf2af9a2f2c58c0e31502ee41 authored by Fred Drake on 04 November 2004, 03:25:23 UTC, committed by Fred Drake on 04 November 2004, 03:25:23 UTC
(closes SF patch #1054715; backported from trunk revision 1.151)
1 parent d8f5802
Raw File
Tip revision: 0ab7093be266f6dcf2af9a2f2c58c0e31502ee41 authored by Fred Drake on 04 November 2004, 03:25:23 UTC
fix markup in "title" attribute for \citetitle{}
Tip revision: 0ab7093
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