Staging
v0.5.1
https://github.com/python/cpython
Revision 830fdc4b43332d1c3a36d147449ad40d23f7efde authored by Anthony Baxter on 08 April 2002, 04:42:09 UTC, committed by Anthony Baxter on 08 April 2002, 04:42:09 UTC
457466: "popenx() argument mangling hangs python" [Win9x only]."

Can't test this myself, but MarkH sez it's ok.
1 parent fc4afb3
Raw File
Tip revision: 830fdc4b43332d1c3a36d147449ad40d23f7efde authored by Anthony Baxter on 08 April 2002, 04:42:09 UTC
Backport of bug
Tip revision: 830fdc4
getversion.c

/* Return the full version string. */

#include "Python.h"

#include "patchlevel.h"

const char *
Py_GetVersion(void)
{
	static char version[250];
	sprintf(version, "%.80s (%.80s) %.80s", PY_VERSION,
		Py_GetBuildInfo(), Py_GetCompiler());
	return version;
}
back to top