https://github.com/python/cpython
Raw File
Tip revision: aa73e1722eb9835dc99fd8983885a141112ee4ab authored by Ned Deily on 16 February 2021, 01:30:33 UTC
3.6.13
Tip revision: aa73e17
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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