We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5c42e commit 1bd3a6dCopy full SHA for 1bd3a6d
1 file changed
Objects/typevarobject.c
@@ -123,7 +123,7 @@ PyTypeObject _PyNoDefault_Type = {
123
124
PyObject _Py_NoDefaultStruct = _PyObject_HEAD_INIT(&_PyNoDefault_Type);
125
126
-/* NoExtraItems: a marker object for TypeDict extra_items when it's unset. */
+/* NoExtraItems: a marker object for TypeDict extra_items when its unset. */
127
128
static PyObject *
129
NoExtraItems_repr(PyObject *op)
@@ -157,7 +157,7 @@ noextraitems_dealloc(PyObject *obj)
157
{
158
/* This should never get called, but we also don't want to SEGV if
159
* we accidentally decref NoExtraItems out of existence. Instead,
160
- * since NoDefault is an immortal object, re-set the reference count.
+ * since NoExtraItems is an immortal object, re-set the reference count.
161
*/
162
_Py_SetImmortal(obj);
163
}
0 commit comments