Staging
v0.5.1
https://github.com/python/cpython
Revision bb5b5291971c104ea773db1a30e46d410b6b3e1e authored by Miss Islington (bot) on 21 March 2018, 16:21:15 UTC, committed by Antoine Pitrou on 21 March 2018, 16:21:15 UTC
(cherry picked from commit e2f33add635df4fde81be9960bab367e010c19bf)

Co-authored-by: Thomas Moreau <thomas.moreau.2010@gmail.com>
1 parent 22136c9
Raw File
Tip revision: bb5b5291971c104ea773db1a30e46d410b6b3e1e authored by Miss Islington (bot) on 21 March 2018, 16:21:15 UTC
bpo-33078 - Fix queue size on pickling error (GH-6119) (GH-6178)
Tip revision: bb5b529
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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