/Python/getcopyright.c

http://unladen-swallow.googlecode.com/ · C · 23 lines · 19 code · 3 blank · 1 comment · 0 complexity · a8676dfcf90b0448fbb1e717d3cd0379 MD5 · raw file

  1. /* Return the copyright string. This is updated manually. */
  2. #include "Python.h"
  3. static char cprt[] =
  4. "\
  5. Copyright (c) 2001-2009 Python Software Foundation.\n\
  6. All Rights Reserved.\n\
  7. \n\
  8. Copyright (c) 2000 BeOpen.com.\n\
  9. All Rights Reserved.\n\
  10. \n\
  11. Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\
  12. All Rights Reserved.\n\
  13. \n\
  14. Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
  15. All Rights Reserved.";
  16. const char *
  17. Py_GetCopyright(void)
  18. {
  19. return cprt;
  20. }