From fd838e6c8462d5feecf949a271419d13bbc0d32c Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 20 Apr 2009 02:09:13 +0000 Subject: Merged revisions 71734,71738-71739 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r71734 | benjamin.peterson | 2009-04-18 17:15:26 -0500 (Sat, 18 Apr 2009) | 1 line many more types to initialize (I had to expose some of them) ........ r71738 | benjamin.peterson | 2009-04-18 21:32:42 -0500 (Sat, 18 Apr 2009) | 1 line initialize weakref some weakref types ........ r71739 | benjamin.peterson | 2009-04-18 21:40:43 -0500 (Sat, 18 Apr 2009) | 1 line make errors consistent ........ --- Include/sliceobject.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Include/sliceobject.h') diff --git a/Include/sliceobject.h b/Include/sliceobject.h index dfc30c705f..8ab62dd4f8 100644 --- a/Include/sliceobject.h +++ b/Include/sliceobject.h @@ -25,6 +25,7 @@ typedef struct { } PySliceObject; PyAPI_DATA(PyTypeObject) PySlice_Type; +PyAPI_DATA(PyTypeObject) PyEllipsis_Type; #define PySlice_Check(op) (Py_TYPE(op) == &PySlice_Type) -- cgit v1.2.1