Coverage Report

Created: 2025-07-11 06:59

/src/Python-3.8.3/Python/getplatform.c
Line
Count
Source
1
2
#include "Python.h"
3
4
#ifndef PLATFORM
5
#define PLATFORM "unknown"
6
#endif
7
8
const char *
9
Py_GetPlatform(void)
10
14
{
11
14
    return PLATFORM;
12
14
}