From 6f6922c0906e2986e221cb48c338f67ee72f1aee Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 24 Jun 2014 18:11:48 -0700 Subject: Add news entry for #21832 --- Misc/NEWS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 8598c3f..e1b2063 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -29,6 +29,8 @@ Library - Issue #21491: socketserver: Fix a race condition in child processes reaping. +- Issue #21832: Require named tuple inputs to be exact strings. + - Issue #21812: turtle.shapetransform did not tranform the turtle on the first call. (Issue identified and fixed by Lita Cho.) -- cgit v0.12 > index : cpython.git
https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
path: root/Python/getplatform.c
blob: 68991402b5b0001cfbf52a9394baa3340f52fe88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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