Skip to content

Commit 88c5f3f

Browse files
authored
Don't change an unrelated example
1 parent 8d8b366 commit 88c5f3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/extending/newtypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ be left as zero.
563563
Concretely, here is how the statically declared type object would look::
564564

565565
static PyTypeObject TrivialType = {
566-
.ob_base = PyVarObject_HEAD_INIT(NULL, 0)
566+
PyVarObject_HEAD_INIT(NULL, 0)
567567
/* ... other members omitted for brevity ... */
568568
.tp_flags = Py_TPFLAGS_MANAGED_WEAKREF | ...,
569569
};

0 commit comments

Comments
 (0)