Staging
v0.5.1
https://github.com/python/cpython
Revision f0dbf7a6abc821c77e912deae81e3a27cf334c54 authored by Martin Panter on 15 May 2016, 01:26:25 UTC, committed by Martin Panter on 15 May 2016, 01:26:25 UTC
1 parent 4dd27f0
Raw File
Tip revision: f0dbf7a6abc821c77e912deae81e3a27cf334c54 authored by Martin Panter on 15 May 2016, 01:26:25 UTC
Issue #26870: Add readline.set_auto_history(), originally by Tyler Crompton
Tip revision: f0dbf7a
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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