gh-135965: Delete duplicate word in isolating-extensions howto (#135964)

Change use use to use.
This commit is contained in:
Weilin Du 2025-06-26 19:41:41 +08:00 committed by GitHub
parent 6be17baeb5
commit ffb2a02f98
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -453,7 +453,7 @@ Avoiding ``PyObject_New``
GC-tracked objects need to be allocated using GC-aware functions.
If you use use :c:func:`PyObject_New` or :c:func:`PyObject_NewVar`:
If you use :c:func:`PyObject_New` or :c:func:`PyObject_NewVar`:
- Get and call type's :c:member:`~PyTypeObject.tp_alloc` slot, if possible.
That is, replace ``TYPE *o = PyObject_New(TYPE, typeobj)`` with::