Staging
v0.5.1
https://github.com/python/cpython
Revision 6aca765220f5915482c7c4533160b4179aea9faa authored by Serhiy Storchaka on 04 May 2013, 12:11:46 UTC, committed by Serhiy Storchaka on 04 May 2013, 12:11:46 UTC
1 parent 0801d73
Raw File
Tip revision: 6aca765220f5915482c7c4533160b4179aea9faa authored by Serhiy Storchaka on 04 May 2013, 12:11:46 UTC
Issue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions.
Tip revision: 6aca765
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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