include Python.h

This commit is contained in:
Guido van Rossum 1995-09-18 21:40:19 +00:00
parent 650ae0ab06
commit 020dfe7f2e
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
/* Return the copyright string. This is updated manually. */
#include "Python.h"
const char *
getcopyright()
{

View File

@ -1,5 +1,7 @@
/* Return the full version string. */
#include "Python.h"
#include "patchlevel.h"
#define VERSION "%s (%s) %s"