]> granicus.if.org Git - python/commitdiff
Fix wording in comment
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 9 Oct 2006 18:05:19 +0000 (18:05 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 9 Oct 2006 18:05:19 +0000 (18:05 +0000)
Objects/typeobject.c

index d4a46c37f02e122dca5a31b0f62cbb824f4de3c1..0cf830a1735a247ebdffb7b214ff8377857085a9 100644 (file)
@@ -3743,7 +3743,7 @@ hackcheck(PyObject *self, setattrofunc func, char *what)
        while (type && type->tp_flags & Py_TPFLAGS_HEAPTYPE)
                type = type->tp_base;
         /* If type is NULL now, this is a really weird type.
-           In the same of backwards compatibility (?), just shut up. */
+           In the spirit of backwards compatibility (?), just shut up. */
        if (type && type->tp_setattro != func) {
                PyErr_Format(PyExc_TypeError,
                             "can't apply this %s to %s object",
@@ -3960,7 +3960,7 @@ tp_new_wrapper(PyObject *self, PyObject *args, PyObject *kwds)
        while (staticbase && (staticbase->tp_flags & Py_TPFLAGS_HEAPTYPE))
                staticbase = staticbase->tp_base;
         /* If staticbase is NULL now, it is a really weird type.
-           In the same of backwards compatibility (?), just shut up. */
+           In the spirit of backwards compatibility (?), just shut up. */
        if (staticbase && staticbase->tp_new != type->tp_new) {
                PyErr_Format(PyExc_TypeError,
                             "%s.__new__(%s) is not safe, use %s.__new__()",