Staging
v0.5.1
https://github.com/python/cpython
Revision 444f7d025df285bfa5ff676ff9f0e2aed08ce638 authored by Raymond Hettinger on 06 September 2003, 05:48:07 UTC, committed by Raymond Hettinger on 06 September 2003, 05:48:07 UTC
1 parent b21d822
Raw File
Tip revision: 444f7d025df285bfa5ff676ff9f0e2aed08ce638 authored by Raymond Hettinger on 06 September 2003, 05:48:07 UTC
SF bug 799191: fix markup
Tip revision: 444f7d0
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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