Staging
v0.8.1
https://github.com/python/cpython
Revision fe385251f429dccddeb212f5ad02c026fe4a6550 authored by Thomas Wouters on 19 January 2001, 23:16:56 UTC, committed by Thomas Wouters on 19 January 2001, 23:16:56 UTC
ctime, gmtime and localtime optional, defaulting to 'the current time' in
all cases. Adjust docs, add news item. Also convert all argument-handling to
METH_VARARGS. Closes SF patch #103265.
1 parent 5566c1c
Raw File
Tip revision: fe385251f429dccddeb212f5ad02c026fe4a6550 authored by Thomas Wouters on 19 January 2001, 23:16:56 UTC
Make the 'time' argument to the timemodule functions strftime, asctime,
Tip revision: fe38525
getcopyright.c
/* Return the copyright string.  This is updated manually. */

#include "Python.h"

static char cprt[] = 
"\
Copyright (c) 2000, 2001 Guido van Rossum.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 2000 BeOpen.com.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 1995-2000 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