Staging
v0.5.1
https://github.com/python/cpython
Revision 28773ca7a7aa58a28e42a9eb0066acf71b5a8dc4 authored by Dargor on 15 October 2017, 03:41:13 UTC, committed by Terry Jan Reedy on 15 October 2017, 03:41:13 UTC
1 parent 620f70e
Raw File
Tip revision: 28773ca7a7aa58a28e42a9eb0066acf71b5a8dc4 authored by Dargor on 15 October 2017, 03:41:13 UTC
bpo-31780: Fix incorrect error message for ',x', ',b', ',o' specs (#4002)
Tip revision: 28773ca
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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