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.
182
182
Type of a code object watcher callback function.
183
183
184
184
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
186
186
before the destruction of *co* takes place, so the prior state of *co*
187
187
can be inspected.
188
188
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ There are a few functions specific to Python functions.
169
169
unpredictable effects, including infinite recursion.
170
170
171
171
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
173
173
before the modification to *func * takes place, so the prior state of *func *
174
174
can be inspected. The runtime is permitted to optimize away the creation of
175
175
function objects when possible. In such cases no event will be emitted.
Original file line number Diff line number Diff line change @@ -1187,7 +1187,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)
1187
1187
1188
1188
.. c :macro :: Py_TPFLAGS_MANAGED_DICT
1189
1189
1190
- This bit indicates that instances of the class have a `~object.__dict__ `
1190
+ This bit indicates that instances of the class have a :attr: `~object.__dict__ `
1191
1191
attribute, and that the space for the dictionary is managed by the VM.
1192
1192
1193
1193
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