Staging
v0.5.1
https://github.com/python/cpython
Revision ad2223730814d009b94113409437cd5fdb1485e2 authored by Anthony Baxter on 05 December 2001, 06:46:16 UTC, committed by Anthony Baxter on 05 December 2001, 06:46:16 UTC
Make sure path names inserted into ZIP files are normalized to use "/" as
the directory separator, as required by the format specification.
This closes SF bug #440693.
1 parent 6fcbe88
Raw File
Tip revision: ad2223730814d009b94113409437cd5fdb1485e2 authored by Anthony Baxter on 05 December 2001, 06:46:16 UTC
backport 1.15
Tip revision: ad22237
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