Staging
v0.5.1
https://github.com/python/cpython
Revision bd0c897332faddce4ebdd4698f976c99a70ec346 authored by Brian Curtin on 31 January 2011, 19:35:02 UTC, committed by Brian Curtin on 31 January 2011, 19:35:02 UTC
1 parent f031356
Raw File
Tip revision: bd0c897332faddce4ebdd4698f976c99a70ec346 authored by Brian Curtin on 31 January 2011, 19:35:02 UTC
#11083 typo: RuntimeException -> RuntimeError
Tip revision: bd0c897
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