You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
502 B

31 years ago
31 years ago
31 years ago
31 years ago
31 years ago
  1. /* Return the copyright string. This is updated manually. */
  2. #include "Python.h"
  3. static char cprt[] =
  4. "\
  5. Copyright (c) 2001-2012 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. }