Staging
v0.8.1
https://github.com/python/cpython
Revision 0356ff0493d0e19b82506510232e5f1cadd804cd authored by Serhiy Storchaka on 25 December 2013, 15:35:11 UTC, committed by Serhiy Storchaka on 25 December 2013, 15:35:11 UTC
1 parent 5542b15
Raw File
Tip revision: 0356ff0493d0e19b82506510232e5f1cadd804cd authored by Serhiy Storchaka on 25 December 2013, 15:35:11 UTC
test_debug in test_tkinter/test_text no longer fails when wantobjects is false.
Tip revision: 0356ff0
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