Staging
v0.5.1
https://github.com/python/cpython
Revision 59eb9a4da504315345b5b0d8fb8eebddc22ccb92 authored by Yury Selivanov on 11 May 2015, 18:48:38 UTC, committed by Yury Selivanov on 11 May 2015, 18:48:38 UTC
1 parent 740169c
Raw File
Tip revision: 59eb9a4da504315345b5b0d8fb8eebddc22ccb92 authored by Yury Selivanov on 11 May 2015, 18:48:38 UTC
asyncio: async() function is deprecated in favour of ensure_future().
Tip revision: 59eb9a4
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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