Staging
v0.5.1
Revision 9da33c82124f27eb58ba4cf145675fe7a1035744 authored by Miss Islington (bot) on 04 December 2017, 22:02:32 UTC, committed by Terry Jan Reedy on 04 December 2017, 22:02:32 UTC
When tk event handling is driven by IDLE's run loop, a confusing
and distracting queue.EMPTY traceback context is no longer added
to tk event exception tracebacks.  The traceback is now the same
as when event handling is driven by user code.  Patch based on
a suggestion by Serhiy Storchaka.
(cherry picked from commit 1e2fcac4972530aa2c963d7e4011021df5ba866e)
1 parent 6e68794
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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