Staging
v0.5.1
https://github.com/python/cpython
Revision 68976378f7aed6be86a057211c5a7a5e7591aedb authored by Fred Drake on 11 July 2003, 20:37:13 UTC, committed by Fred Drake on 11 July 2003, 20:37:13 UTC
The Unpickler forget about its find_class attribute.

Also make sure we visit and clear self->safe_constructors in the GC
support.
1 parent 63bda3a
Raw File
Tip revision: 68976378f7aed6be86a057211c5a7a5e7591aedb authored by Fred Drake on 11 July 2003, 20:37:13 UTC
Backport Jeremy's patch from the trunk (revision 2.147):
Tip revision: 6897637
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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