Fix in trailing comment:  PyDict_SetItemString() does *not* consume a reference
count, PyList_SetItem() does.  Very confusing!
diff --git a/Include/object.h b/Include/object.h
index 65e25bc..b3f18d7 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -461,9 +461,8 @@
 must call Py_INCREF() explicitly.
 
 NOTE: functions that 'consume' a reference count like
-PyDict_SetItemString() even
-consume the reference if the object wasn't stored, to simplify error
-handling.
+PyList_SetItemString() even consume the reference if the object wasn't
+stored, to simplify error handling.
 
 It seems attractive to make other functions that take an object as
 argument consume a reference count; however this may quickly get