Staging
v0.5.1
https://github.com/python/cpython
Revision 0e42f0e7991e0ae7484ea7cdc339e6293a5fd169 authored by Gregory P. Smith on 19 January 2008, 22:35:09 UTC, committed by Gregory P. Smith on 19 January 2008, 22:35:09 UTC
- Issue #1336: fix a race condition in subprocess.Popen if the garbage
  collector kicked in at the wrong time that would cause the process
  to hang when the child wrote to stderr.
1 parent 80ebe95
Raw File
Tip revision: 0e42f0e7991e0ae7484ea7cdc339e6293a5fd169 authored by Gregory P. Smith on 19 January 2008, 22:35:09 UTC
Backport r60104 + r60111 from trunk.
Tip revision: 0e42f0e
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