Staging
v0.8.1
https://github.com/python/cpython
Revision e42e2535c4a5d7f11693e598f4cd0844acc278b9 authored by Benjamin Peterson on 04 April 2009, 23:58:19 UTC, committed by Benjamin Peterson on 04 April 2009, 23:58:19 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71203 | benjamin.peterson | 2009-04-04 18:46:34 -0500 (Sat, 04 Apr 2009) | 1 line

  note how using iter* are unsafe while mutating and document iter(dict)
........
1 parent ef8bee4
Raw File
Tip revision: e42e2535c4a5d7f11693e598f4cd0844acc278b9 authored by Benjamin Peterson on 04 April 2009, 23:58:19 UTC
Merged revisions 71203 via svnmerge from
Tip revision: e42e253
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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