Staging
v0.8.1
Revision 429ca448d2a36040f229ad9edc67e31fc6d18bf4 authored by Miss Islington (bot) on 18 March 2018, 06:24:33 UTC, committed by Berker Peksag on 18 March 2018, 06:24:33 UTC
It was actually fixed in SQLite 3.8.8, not 3.8.7.

(cherry picked from commit bbf7bb7a636b3112ef6f6b31df385606d52517ce)

Co-authored-by: Aviv Palivoda <palaviv@gmail.com>
1 parent d7b8103
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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