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
........
This commit is contained in:
Benjamin Peterson 2009-04-20 02:09:13 +00:00
parent ea835e7a87
commit fd838e6c84
4 changed files with 48 additions and 7 deletions

View file

@ -22,7 +22,7 @@ ellipsis_repr(PyObject *op)
return PyUnicode_FromString("Ellipsis");
}
static PyTypeObject PyEllipsis_Type = {
PyTypeObject PyEllipsis_Type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"ellipsis", /* tp_name */
0, /* tp_basicsize */