Staging
v0.5.1
https://github.com/python/cpython
Revision f20eca7c3fa270e291c8856f0832290ef21135df authored by Miss Islington (bot) on 16 April 2018, 14:16:20 UTC, committed by GitHub on 16 April 2018, 14:16:20 UTC
(cherry picked from commit c89b22175807d64c47b598163b804b5dc005d1bb)

Co-authored-by: Andrés Delfino <34587441+andresdelfino@users.noreply.github.com>
1 parent 986eaa8
Raw File
Tip revision: f20eca7c3fa270e291c8856f0832290ef21135df authored by Miss Islington (bot) on 16 April 2018, 14:16:20 UTC
Remove to-be-deprecated urllib.request.urlretrieve function reference (GH-6454)
Tip revision: f20eca7
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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