Staging
v0.8.1
https://github.com/python/cpython
Revision 3b6a8d2455c6897085f4277737b0f9b9a3847c24 authored by Miss Islington (bot) on 15 July 2020, 22:15:37 UTC, committed by GitHub on 15 July 2020, 22:15:37 UTC
(cherry picked from commit 936a66094591dc0e67d4a60c170148bb700ec016)

Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent 16eea45
Raw File
Tip revision: 3b6a8d2455c6897085f4277737b0f9b9a3847c24 authored by Miss Islington (bot) on 15 July 2020, 22:15:37 UTC
bpo-41304: Ensure python3x._pth is loaded on Windows (GH-21495)
Tip revision: 3b6a8d2
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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