Staging
v0.8.1
https://github.com/python/cpython
Revision bd0d91e706974b7810eaddb25a8b169e533fcb19 authored by Steve Dower on 22 May 2015, 23:22:27 UTC, committed by Steve Dower on 22 May 2015, 23:22:27 UTC
1 parent ad577b9
Raw File
Tip revision: bd0d91e706974b7810eaddb25a8b169e533fcb19 authored by Steve Dower on 22 May 2015, 23:22:27 UTC
Removes lingering references to RAR now that make_zip.py actually makes a ZIP
Tip revision: bd0d91e
getversion.c

/* Return the full version string. */

#include "Python.h"

#include "patchlevel.h"

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