Staging
v0.8.1
Revision d8506df229631b34ed720bcf09df9ae9e32022d5 authored by Martin v. Löwis on 06 October 2008, 15:19:21 UTC, committed by Martin v. Löwis on 06 October 2008, 15:19:21 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r66814 | martin.v.loewis | 2008-10-06 17:15:40 +0200 (Mo, 06 Okt 2008) | 3 lines

  Issue #4014: Don't claim that Python has an Alpha release status, in addition
  to claiming it is Mature.
........
1 parent e1cb87e
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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