getcopyright.c 511 B

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