Staging
v0.5.1
https://github.com/python/cpython
Revision e1c669b7ed18a81bfaa349726424ff5de9485f0a authored by Miss Islington (bot) on 28 November 2020, 15:02:23 UTC, committed by GitHub on 28 November 2020, 15:02:23 UTC
(cherry picked from commit d41ec65ab7411e877ca33d05e8c900feca530635)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
1 parent 4498e98
Raw File
Tip revision: e1c669b7ed18a81bfaa349726424ff5de9485f0a authored by Miss Islington (bot) on 28 November 2020, 15:02:23 UTC
bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538)
Tip revision: e1c669b
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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