1995-08-04 01:20:48 -03:00
|
|
|
/* Return the copyright string. This is updated manually. */
|
|
|
|
|
1995-09-18 18:40:19 -03:00
|
|
|
#include "Python.h"
|
|
|
|
|
2000-05-10 17:06:00 -03:00
|
|
|
static char cprt[] =
|
2001-01-18 10:50:11 -04:00
|
|
|
"\
|
Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68112 | benjamin.peterson | 2009-01-01 00:48:39 +0100 (Thu, 01 Jan 2009) | 1 line
#4795 inspect.isgeneratorfunction() should return False instead of None
........
r68115 | benjamin.peterson | 2009-01-01 05:04:41 +0100 (Thu, 01 Jan 2009) | 1 line
simplfy code
........
r68120 | georg.brandl | 2009-01-01 13:15:31 +0100 (Thu, 01 Jan 2009) | 4 lines
#4228: Pack negative values the same way as 2.4
in struct's L format.
........
r68133 | antoine.pitrou | 2009-01-01 16:38:03 +0100 (Thu, 01 Jan 2009) | 1 line
fill in actual issue number in tests
........
r68141 | benjamin.peterson | 2009-01-01 17:43:12 +0100 (Thu, 01 Jan 2009) | 1 line
fix highlighting
........
r68142 | benjamin.peterson | 2009-01-01 18:29:49 +0100 (Thu, 01 Jan 2009) | 2 lines
welcome to 2009, Python!
........
r68145 | amaury.forgeotdarc | 2009-01-02 01:03:54 +0100 (Fri, 02 Jan 2009) | 5 lines
#4801 _collections module fails to build on cygwin.
_PyObject_GC_TRACK is the macro version of PyObject_GC_Track,
and according to documentation it should not be used for extension modules.
........
r68146 | ronald.oussoren | 2009-01-02 11:44:46 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue4472: "configure --enable-shared doesn't work on OSX"
........
r68148 | ronald.oussoren | 2009-01-02 11:48:31 +0100 (Fri, 02 Jan 2009) | 2 lines
Forgot to add a NEWS item in my previous checkin
........
r68149 | ronald.oussoren | 2009-01-02 11:50:48 +0100 (Fri, 02 Jan 2009) | 2 lines
Fix for issue4780
........
2009-01-03 18:33:39 -04:00
|
|
|
Copyright (c) 2001-2009 Python Software Foundation.\n\
|
2001-01-18 10:50:11 -04:00
|
|
|
All Rights Reserved.\n\
|
|
|
|
\n\
|
|
|
|
Copyright (c) 2000 BeOpen.com.\n\
|
2000-09-03 22:27:04 -03:00
|
|
|
All Rights Reserved.\n\
|
|
|
|
\n\
|
2001-04-12 17:53:31 -03:00
|
|
|
Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
|
2000-09-03 00:35:50 -03:00
|
|
|
All Rights Reserved.\n\
|
2000-09-03 22:27:04 -03:00
|
|
|
\n\
|
2000-09-03 22:22:12 -03:00
|
|
|
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
|
2000-09-03 00:35:50 -03:00
|
|
|
All Rights Reserved.";
|
2000-05-10 17:06:00 -03:00
|
|
|
|
1995-08-04 01:20:48 -03:00
|
|
|
const char *
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_GetCopyright(void)
|
1995-08-04 01:20:48 -03:00
|
|
|
{
|
2000-05-10 17:06:00 -03:00
|
|
|
return cprt;
|
1995-08-04 01:20:48 -03:00
|
|
|
}
|