Staging
v0.5.1
https://github.com/python/cpython
Revision 345fff3de82f29a8bbb8bdead8cda1c1e480d040 authored by Éric Araujo on 28 July 2011, 20:27:28 UTC, committed by Éric Araujo on 28 July 2011, 20:27:28 UTC
1 parent 5ac56d2
Raw File
Tip revision: 345fff3de82f29a8bbb8bdead8cda1c1e480d040 authored by Éric Araujo on 28 July 2011, 20:27:28 UTC
Remove mentions of previous license in profile module (#12417 followup)
Tip revision: 345fff3
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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