Staging
v0.5.1
https://github.com/python/cpython
Revision 7b96f07febba594609ea4a0272fa55c4c330ee93 authored by Brett Cannon on 18 August 2008, 00:41:11 UTC, committed by Brett Cannon on 18 August 2008, 00:41:11 UTC
1 parent 46225e7
Raw File
Tip revision: 7b96f07febba594609ea4a0272fa55c4c330ee93 authored by Brett Cannon on 18 August 2008, 00:41:11 UTC
Remove an unneeded import of abc.ABCMeta from 'inspect'.
Tip revision: 7b96f07
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