summaryrefslogtreecommitdiffstats
path: root/Objects/sliceobject.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-20 02:09:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-04-20 02:09:13 (GMT)
commitc485361f6129fbdc5f0258162b288977b7194084 (patch)
tree1784ce30a95bf06f0c4301dadfd5c1be7c4631ea /Objects/sliceobject.c
parent7b5adc066a1fe3ffa61e4956944696f6352ac421 (diff)
downloadcpython-c485361f6129fbdc5f0258162b288977b7194084.zip
cpython-c485361f6129fbdc5f0258162b288977b7194084.tar.gz
cpython-c485361f6129fbdc5f0258162b288977b7194084.tar.bz2
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 ........
Diffstat (limited to 'Objects/sliceobject.c')
-rw-r--r--Objects/sliceobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/sliceobject.c b/Objects/sliceobject.c
index 8748fed..2eb3941 100644
--- a/Objects/sliceobject.c
+++ b/Objects/sliceobject.c
@@ -22,7 +22,7 @@ ellipsis_repr(PyObject *op)
return PyString_FromString("Ellipsis");
}
-static PyTypeObject PyEllipsis_Type = {
+PyTypeObject PyEllipsis_Type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"ellipsis", /* tp_name */
0, /* tp_basicsize */