Staging
v0.5.1
https://github.com/python/cpython
Revision 815b41b1cdb98686fc3f9cdf995b6983c12c04b3 authored by Martin v. Löwis on 28 February 2014, 14:27:29 UTC, committed by Martin v. Löwis on 28 February 2014, 14:27:29 UTC
are opened in text mode. Patch by Serhiy Storchaka.
1 parent 9db1ab8
Raw File
Tip revision: 815b41b1cdb98686fc3f9cdf995b6983c12c04b3 authored by Martin v. Löwis on 28 February 2014, 14:27:29 UTC
Issue #20731: Properly position in source code files even if they
Tip revision: 815b41b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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