Staging
v0.5.1
https://github.com/python/cpython
Revision 5a294d822b7f5732135662907ec1a1d4a7b0fc9a authored by Berker Peksag on 25 July 2015, 11:53:48 UTC, committed by Berker Peksag on 25 July 2015, 11:53:48 UTC
1 parent 7e732a7
Raw File
Tip revision: 5a294d822b7f5732135662907ec1a1d4a7b0fc9a authored by Berker Peksag on 25 July 2015, 11:53:48 UTC
Issue #21697: shutil.copytree() now correctly handles symbolic links that point to directories.
Tip revision: 5a294d8
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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