Staging
v0.8.1
https://github.com/python/cpython
Revision ef63e9f345755d216d9b2e5bc817e7a45598e746 authored by Tim Peters on 13 March 2006, 05:53:04 UTC, committed by Tim Peters on 13 March 2006, 05:53:04 UTC
When the new -w option (yay! great idea) reruns a
failed test, first display the name of the test (else
it's not always clear from the output which test is
getting run).
1 parent 1baff3c
Raw File
Tip revision: ef63e9f345755d216d9b2e5bc817e7a45598e746 authored by Tim Peters on 13 March 2006, 05:53:04 UTC
Merge rev 42963 from the trunk.
Tip revision: ef63e9f
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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