Commit aa011411 authored by Guido van Rossum's avatar Guido van Rossum

Automatically insert the date.

parent 288a60f9
...@@ -24,7 +24,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -24,7 +24,13 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Configurable Python configuration file */ /* Configurable Python configuration file */
char version[] = "0.9.3 beta (2)"; #define VERSION "0.9.4 beta"
#ifdef __DATE__
#define DATE __DATE__
#else
#define DATE "Dec 16 1991"
#endif
#include <stdio.h> #include <stdio.h>
...@@ -32,19 +38,24 @@ char version[] = "0.9.3 beta (2)"; ...@@ -32,19 +38,24 @@ char version[] = "0.9.3 beta (2)";
#include <stdwin.h> #include <stdwin.h>
#endif #endif
char version[80];
/*ARGSUSED*/ /*ARGSUSED*/
void void
initargs(p_argc, p_argv) initargs(p_argc, p_argv)
int *p_argc; int *p_argc;
char ***p_argv; char ***p_argv;
{ {
sprintf(version, "%s (%s)", VERSION, DATE);
#ifdef USE_STDWIN #ifdef USE_STDWIN
wargs(p_argc, p_argv); wargs(p_argc, p_argv);
#endif #endif
if (*p_argc < 2 && isatty(0) && isatty(1)) if (*p_argc < 2 && isatty(0) && isatty(1))
{ {
printf("Python %s.\n", version); printf("Python %s.\n", version);
printf("Copyright 1990, 1991 Stichting Mathematisch Centrum, Amsterdam\n"); printf(
"Copyright 1990, 1991, 1992 Stichting Mathematisch Centrum, Amsterdam\n");
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment