Skip to content

Commit 972edd9

Browse files
Fix typo in Include/objimpl.h, the word "has" was missing (GH-5568) (GH-5569)
It now reads: ...be aware that Python has no control over... (cherry picked from commit 517da1e) Co-authored-by: Alexey <[email protected]>
1 parent ba4f218 commit 972edd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/objimpl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ must use the platform malloc heap(s), or shared memory, or C++ local storage or
5656
operator new), you must first allocate the object with your custom allocator,
5757
then pass its pointer to PyObject_{Init, InitVar} for filling in its Python-
5858
specific fields: reference count, type pointer, possibly others. You should
59-
be aware that Python no control over these objects because they don't
59+
be aware that Python has no control over these objects because they don't
6060
cooperate with the Python memory manager. Such objects may not be eligible
6161
for automatic garbage collection and you have to make sure that they are
6262
released accordingly whenever their destructor gets called (cf. the specific

0 commit comments

Comments
 (0)