diff options
author | Guido van Rossum <guido@python.org> | 1994-08-19 12:03:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-19 12:03:04 (GMT) |
commit | 72824bab44e8027d67325df94bfa0673c69999fb (patch) | |
tree | 310966603dae4a0f08eb2baa33adde9dbd7efb2d /Modules/config.c.in | |
parent | 0c7095484ee84253d00fd064512a5b203c3bae6f (diff) | |
download | cpython-72824bab44e8027d67325df94bfa0673c69999fb.zip cpython-72824bab44e8027d67325df94bfa0673c69999fb.tar.gz cpython-72824bab44e8027d67325df94bfa0673c69999fb.tar.bz2 |
Move all code from version.c into config.c
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index cc2371a..db8d7c5 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -68,6 +68,40 @@ getprogramname() #endif +/* Python version information */ + +#include "patchlevel.h" + +/* Return the version string. This is constructed from the official + version number (from patchlevel.h), and the current date (if known + to the compiler, else a manually inserted date). */ + +#define VERSION "%s (%s)" + +#ifdef __DATE__ +#define DATE __DATE__ +#else +#define DATE "Aug 17 1994" +#endif + +char * +getversion() +{ + static char version[80]; + sprintf(version, VERSION, PATCHLEVEL, DATE); + return version; +} + + +/* Return the copyright string. This is updated manually. */ + +char * +getcopyright() +{ + return "Copyright 1991-1994 Stichting Mathematisch Centrum, Amsterdam"; +} + + /* Return the initial python search path. This is called once from initsys() to initialize sys.path. The environment variable PYTHONPATH is fetched and the default path |