Staging
v0.5.1
https://github.com/python/cpython
Revision d925ef83bc07df1708124bf48d5ee5f06576b071 authored by Mark Dickinson on 02 February 2009, 20:41:29 UTC, committed by Mark Dickinson on 02 February 2009, 20:41:29 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r69214 | mark.dickinson | 2009-02-02 20:36:42 +0000 (Mon, 02 Feb 2009) | 4 lines

  Issue #1717: rename tp_compare to tp_reserved.  I'll change the
  type of tp_compare in a separate commit, for ease of reversion
  should things go wrong.
........
1 parent 3571d81
Raw File
Tip revision: d925ef83bc07df1708124bf48d5ee5f06576b071 authored by Mark Dickinson on 02 February 2009, 20:41:29 UTC
Merged revisions 69214 via svnmerge from
Tip revision: d925ef8
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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