Staging
v0.5.1
https://github.com/python/cpython
Revision b39a7481ee7e6166d6d2b252a7a514b1f6553dfa authored by Xiang Zhang on 19 June 2017, 14:12:45 UTC, committed by GitHub on 19 June 2017, 14:12:45 UTC
1 parent c3c9db8
Raw File
Tip revision: b39a7481ee7e6166d6d2b252a7a514b1f6553dfa authored by Xiang Zhang on 19 June 2017, 14:12:45 UTC
bpo-30176: Add missing curses cell attributes constants (#2278)
Tip revision: b39a748
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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