Staging
v0.5.1
https://github.com/python/cpython
Revision f9eb82f2520058c60d63e5f4faa13f8471d391c3 authored by Ka-Ping Yee on 12 June 2006, 23:47:52 UTC, committed by Ka-Ping Yee on 12 June 2006, 23:47:52 UTC
This module has been tested so far on Windows XP (Python 2.4 and 2.5a2),
Mac OS X (Python 2.3, 2.4, and 2.5a2), and Linux (Python 2.4 and 2.5a2).
1 parent c2da994
Raw File
Tip revision: f9eb82f2520058c60d63e5f4faa13f8471d391c3 authored by Ka-Ping Yee on 12 June 2006, 23:47:52 UTC
Add the uuid module.
Tip revision: f9eb82f
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

static char cprt[] = 
"\
Copyright (c) 2001-2006 Python Software Foundation.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 2000 BeOpen.com.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
All Rights Reserved.";

const char *
Py_GetCopyright(void)
{
	return cprt;
}
back to top