Staging
v0.5.1
https://github.com/python/cpython
Revision a120ffcf1245d8abb8ecc6984a8f4aad61ab5af4 authored by Guido van Rossum on 22 January 2001, 15:29:14 UTC, committed by Guido van Rossum on 22 January 2001, 15:29:14 UTC
1 parent 31584cb
Raw File
Tip revision: a120ffcf1245d8abb8ecc6984a8f4aad61ab5af4 authored by Guido van Rossum on 22 January 2001, 15:29:14 UTC
SF Patch #103185, by jlt63: Some more standard modules cleanup for Cygwin
Tip revision: a120ffc
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