Staging
v0.5.1
Revision ad4c7954df11b45ab2d17eefeb42bb7385615697 authored by Miss Islington (bot) on 03 June 2018, 15:23:53 UTC, committed by Serhiy Storchaka on 03 June 2018, 15:23:53 UTC
Separate tests leaked files or were depended on files leaked in other tests.
(cherry picked from commit 027f95c736457f12c5713d9cf5b95ac335e583df)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 949da9e
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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