Bump version to 0.9.1.
[python/dscho.git] / Python / getversion.c
blob7e0ff0edd60b4e6c5c91f3be59b3836434919b54
1 /***********************************************************
2 Copyright (c) 2000, BeOpen.com.
3 Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4 Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5 All rights reserved.
7 See the file "Misc/COPYRIGHT" for information on usage and
8 redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
9 ******************************************************************/
11 /* Return the full version string. */
13 #include "Python.h"
15 #include "patchlevel.h"
17 const char *
18 Py_GetVersion(void)
20 static char version[250];
21 sprintf(version, "%.80s (%.80s) %.80s", PY_VERSION,
22 Py_GetBuildInfo(), Py_GetCompiler());
23 return version;