File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ bound into a function.
182182 Type of a code object watcher callback function.
183183
184184 If *event* is ``PY_CODE_EVENT_CREATE``, then the callback is invoked
185- after `co` has been fully initialized. Otherwise, the callback is invoked
185+ after *co* has been fully initialized. Otherwise, the callback is invoked
186186 before the destruction of *co* takes place, so the prior state of *co*
187187 can be inspected.
188188
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ There are a few functions specific to Python functions.
169169 unpredictable effects, including infinite recursion.
170170
171171 If *event * is ``PyFunction_EVENT_CREATE ``, then the callback is invoked
172- after ` func ` has been fully initialized. Otherwise, the callback is invoked
172+ after * func * has been fully initialized. Otherwise, the callback is invoked
173173 before the modification to *func * takes place, so the prior state of *func *
174174 can be inspected. The runtime is permitted to optimize away the creation of
175175 function objects when possible. In such cases no event will be emitted.
Original file line number Diff line number Diff line change @@ -1238,7 +1238,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)
12381238
12391239 .. c :macro :: Py_TPFLAGS_MANAGED_DICT
12401240
1241- This bit indicates that instances of the class have a `~object.__dict__ `
1241+ This bit indicates that instances of the class have a :attr: `~object.__dict__ `
12421242 attribute, and that the space for the dictionary is managed by the VM.
12431243
12441244 If this flag is set, :c:macro: `Py_TPFLAGS_HAVE_GC ` should also be set.
You can’t perform that action at this time.
0 commit comments