Staging
v0.5.1
https://github.com/python/cpython
Revision aef859c5ee3506f8faad0055e7875af94c4d483f authored by Serhiy Storchaka on 05 February 2015, 13:14:35 UTC, committed by Serhiy Storchaka on 05 February 2015, 13:14:35 UTC
1 parent a87501f
Raw File
Tip revision: aef859c5ee3506f8faad0055e7875af94c4d483f authored by Serhiy Storchaka on 05 February 2015, 13:14:35 UTC
Issue #18982: Add tests for CLI of the calendar module.
Tip revision: aef859c
getcompiler.c

/* Return the compiler identification, if possible. */

#include "Python.h"

#ifndef COMPILER

#ifdef __GNUC__
#define COMPILER "\n[GCC " __VERSION__ "]"
#endif

#endif /* !COMPILER */

#ifndef COMPILER

#ifdef __cplusplus
#define COMPILER "[C++]"
#else
#define COMPILER "[C]"
#endif

#endif /* !COMPILER */

const char *
Py_GetCompiler(void)
{
	return COMPILER;
}
back to top