Staging
v0.5.1
https://github.com/python/cpython
Revision e5eb5eb55e6db966779834ea3bf1018acc843531 authored by Guido van Rossum on 07 October 1995, 23:08:05 UTC, committed by Guido van Rossum on 07 October 1995, 23:08:05 UTC
1 parent c0c01f7
Raw File
Tip revision: e5eb5eb55e6db966779834ea3bf1018acc843531 authored by Guido van Rossum on 07 October 1995, 23:08:05 UTC
Added all changes since 1.2 (from rcs logs)
Tip revision: e5eb5eb
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

const char *
getcopyright()
{
	return "Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam";
}
back to top