Staging
v0.8.1
https://github.com/python/cpython
Revision c20472640cff9f2cb513b1443897814d0328bea1 authored by Larry Hastings on 26 January 2014, 04:43:29 UTC, committed by Larry Hastings on 26 January 2014, 04:43:29 UTC
1 parent 9ad116b
Raw File
Tip revision: c20472640cff9f2cb513b1443897814d0328bea1 authored by Larry Hastings on 26 January 2014, 04:43:29 UTC
Issue #20390: Small fixes and improvements for Argument Clinic.
Tip revision: c204726
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