diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 00:49:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 00:49:39 (GMT) |
commit | e0dbd590ea76933c83dc67092bca32a43ef7d68c (patch) | |
tree | b1adc2a74653343c965706daa28ef2d77d4955fb /Include | |
parent | 3ca2a950789b574f987a9e54ee35fd5b404f9808 (diff) | |
download | cpython-e0dbd590ea76933c83dc67092bca32a43ef7d68c.zip cpython-e0dbd590ea76933c83dc67092bca32a43ef7d68c.tar.gz cpython-e0dbd590ea76933c83dc67092bca32a43ef7d68c.tar.bz2 |
bump api version
Diffstat (limited to 'Include')
-rw-r--r-- | Include/modsupport.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index 7a38541..1ad4715f 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -52,7 +52,7 @@ extern PyObject *Py_BuildValue(); extern int PyArg_VaParse Py_PROTO((PyObject *, char *, va_list)); extern PyObject *Py_VaBuildValue Py_PROTO((char *, va_list)); -#define PYTHON_API_VERSION 1002 +#define PYTHON_API_VERSION 1003 /* The API version is maintained (independently from the Python version) so we can detect mismatches between the interpreter and dynamically loaded modules. @@ -60,6 +60,8 @@ extern 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: + 7-Nov-1995 GvR Keyword arguments (should've been done at 1.3 :-( ) + 10-Jan-1995 GvR Renamed globals to new naming scheme 9-Jan-1995 GvR Initial version (incompatible with older API) |