8000 gh-135965: Delete duplicate word in isolating-extensions howto (#135964) · python/cpython@ffb2a02 · GitHub
[go: up one dir, main page]

Skip to content

Commit ffb2a02

Browse files
authored
gh-135965: Delete duplicate word in isolating-extensions howto (#135964)
Change use use to use.
1 parent 6be17ba commit ffb2a02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/howto/isolating-extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ Avoiding ``PyObject_New``
453453

454454
GC-tracked objects need to be allocated using GC-aware functions.
455455

456-
If you use use :c:func:`PyObject_New` or :c:func:`PyObject_NewVar`:
456+
If you use :c:func:`PyObject_New` or :c:func:`PyObject_NewVar`:
457457

458458
- Get and call type's :c:member:`~PyTypeObject.tp_alloc` slot, if possible.
459459
That is, replace ``TYPE *o = PyObject_New(TYPE, typeobj)`` with::

0 commit comments

Comments
 (0)
0