Staging
v0.8.1
https://github.com/python/cpython
Revision 2455cb5dbec06dbd1c4486fbdbaaade51546428b authored by Mariatta on 24 October 2020, 14:12:55 UTC, committed by GitHub on 24 October 2020, 14:12:55 UTC
Closes https://github.com/python/bedevere/issues/287
1 parent 805ef73
Raw File
Tip revision: 2455cb5dbec06dbd1c4486fbdbaaade51546428b authored by Mariatta on 24 October 2020, 14:12:55 UTC
Automatically add skip news and skip issue label to dependabot PRs (GH-22927)
Tip revision: 2455cb5
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

const char *
Py_GetPlatform(void)
{
    return PLATFORM;
}
back to top