Staging
v0.5.1
https://github.com/python/cpython
Revision 6cb2b5b1e1ded4c10e305e493e016a7ccf0275cd authored by Nick Coghlan on 13 October 2013, 14:22:13 UTC, committed by Nick Coghlan on 13 October 2013, 14:22:13 UTC
1 parent aeaecfd
Raw File
Tip revision: 6cb2b5b1e1ded4c10e305e493e016a7ccf0275cd authored by Nick Coghlan on 13 October 2013, 14:22:13 UTC
Issue #17827: Document codecs.encode and codecs.decode
Tip revision: 6cb2b5b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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