Staging
v0.5.1
https://github.com/python/cpython
Revision 4b730161fde1965796ffefdbdd5601369e5c10c2 authored by Serhiy Storchaka on 23 January 2014, 07:44:05 UTC, committed by Serhiy Storchaka on 23 January 2014, 07:44:05 UTC
It tests the convertion Tcl values to Python values when Tcl calls a command
implemented on Python. Currently all values are passed as strings.
1 parent 94338de
Raw File
Tip revision: 4b730161fde1965796ffefdbdd5601369e5c10c2 authored by Serhiy Storchaka on 23 January 2014, 07:44:05 UTC
Added test_user_command in test_tcl.
Tip revision: 4b73016
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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