aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-01-18 07:54:03 +0000
committerGuido van Rossum <guido@python.org>1997-01-18 07:54:03 +0000
commitee5cf9b672b8e919ca9d425d88aedb2c4614772f (patch)
treee1699f42db037d3ba6afd25dc794b2c122d1985e /Include/modsupport.h
parentTwo speedup hacks. Caching the hash saves recalculation of a string's (diff)
downloadcpython-ee5cf9b672b8e919ca9d425d88aedb2c4614772f.tar.gz
cpython-ee5cf9b672b8e919ca9d425d88aedb2c4614772f.tar.bz2
cpython-ee5cf9b672b8e919ca9d425d88aedb2c4614772f.zip
Bump API version due to the various speedup hacks.
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r--Include/modsupport.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h
index 220a47c672c..206cbc72657 100644
--- a/Include/modsupport.h
+++ b/Include/modsupport.h
@@ -59,8 +59,8 @@ 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 1006
-#define PYTHON_API_STRING "1006"
+#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
@@ -74,6 +74,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:
+ 18-Jan-1997 GvR string interning and other speedups
+
11-Oct-1996 GvR renamed Py_Ellipses to Py_Ellipsis :-(
30-Jul-1996 GvR Slice and ellipses syntax added