summaryrefslogtreecommitdiff
path: root/Modules/config.c.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-19 12:03:04 +0000
committerGuido van Rossum <guido@python.org>1994-08-19 12:03:04 +0000
commit72824bab44e8027d67325df94bfa0673c69999fb (patch)
tree310966603dae4a0f08eb2baa33adde9dbd7efb2d /Modules/config.c.in
parent0c7095484ee84253d00fd064512a5b203c3bae6f (diff)
downloadcpython-git-72824bab44e8027d67325df94bfa0673c69999fb.tar.gz
Move all code from version.c into config.c
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r--Modules/config.c.in34
1 files changed, 34 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index cc2371af86..db8d7c5070 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