diff options
author | Guido van Rossum <guido@python.org> | 1999-01-03 12:40:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-03 12:40:24 (GMT) |
commit | f1176c4815cd628ae443b5c4b0e1841588369776 (patch) | |
tree | 29322d8b51a85fa3e7c01c61fac6893c3a0a3b13 /Include/modsupport.h | |
parent | 33f2b7b2577ce0c9247c2eac0a29ce8212cdf829 (diff) | |
download | cpython-f1176c4815cd628ae443b5c4b0e1841588369776.zip cpython-f1176c4815cd628ae443b5c4b0e1841588369776.tar.gz cpython-f1176c4815cd628ae443b5c4b0e1841588369776.tar.bz2 |
New version identification scheme.
The version numbers are now exported by Python.h.
Also rolled back the API version change -- it's back to 1007!
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r-- | Include/modsupport.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index f096750..a90b279 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -61,8 +61,8 @@ extern DL_IMPORT(PyObject *) Py_BuildValue(); extern DL_IMPORT(int) PyArg_VaParse Py_PROTO((PyObject *, char *, va_list)); extern DL_IMPORT(PyObject *) Py_VaBuildValue Py_PROTO((char *, va_list)); -#define PYTHON_API_VERSION 1008 -#define PYTHON_API_STRING "1008" +#define PYTHON_API_VERSION 1007 +#define PYTHON_API_STRING "1007" /* The API version is maintained (independently from the Python version) so we can detect mismatches between the interpreter and dynamically loaded modules. These are diagnosticised by an error message but @@ -76,7 +76,9 @@ extern DL_IMPORT(PyObject *) Py_VaBuildValue Py_PROTO((char *, va_list)); Please add a line or two to the top of this log for each API version change: - 3-Dec-1998 GvR 1008 Python 1.5.2 + 3-Jan-1999 GvR 1007 Decided to change back! (Don't reuse 1008!) + + 3-Dec-1998 GvR 1008 Python 1.5.2b1 18-Jan-1997 GvR 1007 string interning and other speedups |