Staging
v0.5.1
https://github.com/python/cpython
Revision 616ac231786bc60b0273a86712fb9250ca635c59 authored by Martin v. Löwis on 14 March 2005, 17:17:04 UTC, committed by Martin v. Löwis on 14 March 2005, 17:17:04 UTC
1 parent d84b9d3
Raw File
Tip revision: 616ac231786bc60b0273a86712fb9250ca635c59 authored by Martin v. Löwis on 14 March 2005, 17:17:04 UTC
Add more UUIDs. Update custom actions for Itanium
Tip revision: 616ac23
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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