From 5773b1caa3ca430f53d5f8a93345c3069f0e346b Mon Sep 17 00:00:00 2001 From: SHOAIB SADIQ SALEHMOHAMED <24f2000857@ds.study.iitm.ac.in> Date: Thu, 30 Jan 2025 16:32:10 +0530 Subject: [PATCH 1/2] Update ACKS --- Misc/ACKS | 1 + 1 file changed, 1 insertion(+) diff --git a/Misc/ACKS b/Misc/ACKS index 4901609a178bc3..3ae4b439de1bb7 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -1630,6 +1630,7 @@ Suman Saha Koki Saito Hajime Saitou George Sakkis +Shoaib Sadiq Salehmohamed Victor Salgado Rich Salz Kevin Samborn From 2322dc07f305a65cc297012d368413653e9a1721 Mon Sep 17 00:00:00 2001 From: SHOAIB SADIQ SALEHMOHAMED <24f2000857@ds.study.iitm.ac.in> Date: Thu, 30 Jan 2025 16:34:39 +0530 Subject: [PATCH 2/2] gh-129362 Edited to change True to ``1`` (Non Zero) --- Doc/c-api/unicode.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 94110d48ed7d85..ca0f63150d5972 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -77,13 +77,13 @@ access to internal read-only data of Unicode objects: .. c:function:: int PyUnicode_Check(PyObject *obj) - Return true if the object *obj* is a Unicode object or an instance of a Unicode + Return ``1``(Non Zero) if the object *obj* is a Unicode object or an instance of a Unicode subtype. This function always succeeds. .. c:function:: int PyUnicode_CheckExact(PyObject *obj) - Return true if the object *obj* is a Unicode object, but not an instance of a + Return ``1``(Non Zero) if the object *obj* is a Unicode object, but not an instance of a subtype. This function always succeeds.