Staging
v0.5.1
https://github.com/python/cpython
Revision 04081ea26679cb3f9c7eec5a51f1aeb1816c67c2 authored by Johannes Gijsbers on 12 December 2004, 16:51:48 UTC, committed by Johannes Gijsbers on 12 December 2004, 16:51:48 UTC
- Doc/lib/libbase64.tex
s/algorith/algorithm

- Doc/lib/libpickle.tex
s/interchangable/interchangeable

- Doc/lib/libxmlrpclib.tex
s/{_cmp__}/{__cmp__}

leading underscore needs to be double, not single.

- Doc/ref/ref6.tex
0/1 => False/True
1 parent 4f63948
Raw File
Tip revision: 04081ea26679cb3f9c7eec5a51f1aeb1816c67c2 authored by Johannes Gijsbers on 12 December 2004, 16:51:48 UTC
Patch #1080684: typo repair. Thanks George Yoshida!
Tip revision: 04081ea
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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