Staging
v0.5.1
https://github.com/python/cpython
Revision ada0d182bd97cf1fa94e7843647078e418084cfa authored by Neal Norwitz on 04 February 2006, 22:59:56 UTC, committed by Neal Norwitz on 04 February 2006, 22:59:56 UTC
1 parent 71a92a8
Raw File
Tip revision: ada0d182bd97cf1fa94e7843647078e418084cfa authored by Neal Norwitz on 04 February 2006, 22:59:56 UTC
SF bug 1415455, fix typo in module name
Tip revision: ada0d18
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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