Staging
v0.8.1
Revision b74777ed333ce2d22494fd4c996e87d386d950c8 authored by Benjamin Peterson on 26 October 2008, 20:59:05 UTC, committed by Benjamin Peterson on 26 October 2008, 20:59:05 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67030 | benjamin.peterson | 2008-10-26 15:21:13 -0500 (Sun, 26 Oct 2008) | 1 line

  fix __future__ imports when multiple features are given
........
  r67031 | benjamin.peterson | 2008-10-26 15:33:19 -0500 (Sun, 26 Oct 2008) | 1 line

  add forgotten test for r67030
........
1 parent 23681da
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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