Staging
v0.8.1
https://github.com/python/cpython
Revision 18e4db5ebe8396d06478c0a3fdbf3076e4b747ed authored by Brett Cannon on 03 February 2010, 22:11:54 UTC, committed by Brett Cannon on 03 February 2010, 22:11:54 UTC
1 parent c68e9f0
Raw File
Tip revision: 18e4db5ebe8396d06478c0a3fdbf3076e4b747ed authored by Brett Cannon on 03 February 2010, 22:11:54 UTC
Update a docstring to suggest using importlib.import_module instead of calling __import__ directly.
Tip revision: 18e4db5
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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