Staging
v0.8.1
https://github.com/python/cpython
Revision 3853586e0caa0d5c4342ac8bd7e78cb5766fa8cc authored by Senthil Kumaran on 17 March 2011, 04:34:18 UTC, committed by Senthil Kumaran on 17 March 2011, 04:34:18 UTC
1 parent 6e0a8b8
Raw File
Tip revision: 3853586e0caa0d5c4342ac8bd7e78cb5766fa8cc authored by Senthil Kumaran on 17 March 2011, 04:34:18 UTC
Fix issue11442 - Add a charset parameter to the Content-type to avoid XSS attacks.
Tip revision: 3853586
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

const char *
Py_GetPlatform(void)
{
	return PLATFORM;
}
back to top