@@ -53,7 +53,7 @@ Type Objects
5353.. c :function :: PyObject* PyType_GetDict (PyTypeObject* type)  
5454
5555   Return the type object's internal namespace, which is otherwise only 
56-    exposed via a read-only proxy (:attr: `cls.__dict__ <class .__dict__> `). 
56+    exposed via a read-only proxy (:attr: `cls.__dict__ <type .__dict__> `). 
5757   This is a 
5858   replacement for accessing :c:member:`~PyTypeObject.tp_dict` directly. 
5959   The returned dictionary must be treated as read-only. 
@@ -141,7 +141,7 @@ Type Objects
141141   Return true if *a * is a subtype of *b *. 
142142
143143   This function only checks for actual subtypes, which means that 
144-    :meth: `~class .__subclasscheck__ ` is not called on *b *.  Call 
144+    :meth: `~type .__subclasscheck__ ` is not called on *b *.  Call 
145145   :c:func: `PyObject_IsSubclass ` to do the same check that :func: `issubclass ` 
146146   would do. 
147147
@@ -176,31 +176,29 @@ Type Objects
176176.. c :function :: PyObject* PyType_GetName (PyTypeObject *type)   
177177
178178   Return the type's name. Equivalent to getting the type's 
179-    :attr: `~class .__name__ ` attribute. 
179+    :attr: `~type .__name__ ` attribute. 
180180
181181   .. versionadded :: 3.11  
182182
183183.. c :function :: PyObject* PyType_GetQualName (PyTypeObject *type)   
184184
185185   Return the type's qualified name. Equivalent to getting the 
186-    type's :attr: `~class .__qualname__ ` attribute. 
186+    type's :attr: `~type .__qualname__ ` attribute. 
187187
188188   .. versionadded :: 3.11  
189189
190190.. c :function :: PyObject* PyType_GetFullyQualifiedName (PyTypeObject *type)   
191191
192192   Return the type's fully qualified name. Equivalent to 
193-    ``f"{type.__module__}.{type.__qualname__}" ``, or 
194-    :attr: `type.__qualname__ <class.__qualname__> ` if 
195-    :attr: `type.__module__ <class.__module__> ` is not a string or is equal to 
196-    ``"builtins" ``. 
193+    ``f"{type.__module__}.{type.__qualname__}" ``, or :attr: `type.__qualname__ ` 
194+    if :attr: `type.__module__ ` is not a string or is equal to ``"builtins" ``. 
197195
198196   .. versionadded :: 3.13  
199197
200198.. c :function :: PyObject* PyType_GetModuleName (PyTypeObject *type)   
201199
202200   Return the type's module name. Equivalent to getting the 
203-    :attr: `type.__module__ <class.__module__>  ` attribute. 
201+    :attr: `type.__module__ ` attribute. 
204202
205203   .. versionadded :: 3.13  
206204
0 commit comments