Commit b43d3255 authored by Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 72367 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72367 | benjamin.peterson | 2009-05-05 18:00:48 -0500 (Tue, 05 May 2009) | 1 line

  tabify :(
........
parent f05f820b
...@@ -228,10 +228,10 @@ test_lazy_hash_inheritance(PyObject* self) ...@@ -228,10 +228,10 @@ test_lazy_hash_inheritance(PyObject* self)
type = &_HashInheritanceTester_Type; type = &_HashInheritanceTester_Type;
if (type->tp_dict != NULL) if (type->tp_dict != NULL)
/* The type has already been initialized. This probably means -R /* The type has already been initialized. This probably means
is being used. */ -R is being used. */
Py_RETURN_NONE; Py_RETURN_NONE;
obj = PyObject_New(PyObject, type); obj = PyObject_New(PyObject, type);
...@@ -277,7 +277,7 @@ test_lazy_hash_inheritance(PyObject* self) ...@@ -277,7 +277,7 @@ test_lazy_hash_inheritance(PyObject* self)
return NULL; return NULL;
} }
Py_DECREF(obj); Py_DECREF(obj);
Py_RETURN_NONE; Py_RETURN_NONE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment