Staging
v0.5.1
https://github.com/python/cpython
Revision 4950ae14916e340e5274ce0b8277aec9006bd035 authored by Berker Peksag on 02 January 2017, 03:13:42 UTC, committed by Berker Peksag on 02 January 2017, 03:13:42 UTC
Zip files can be larger than 4 GiB if allowZip64
is true (default since Python 3.4)
1 parent 14adafd
Raw File
Tip revision: 4950ae14916e340e5274ce0b8277aec9006bd035 authored by Berker Peksag on 02 January 2017, 03:13:42 UTC
Issue #29013: Fix allowZip64 documentation
Tip revision: 4950ae1
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