Skip to content

Commit 2322dc0

Browse files
gh-129362 Edited to change True to 1 (Non Zero)
1 parent 5773b1c commit 2322dc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/c-api/unicode.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ access to internal read-only data of Unicode objects:
7777

7878
.. c:function:: int PyUnicode_Check(PyObject *obj)
7979
80-
Return true if the object *obj* is a Unicode object or an instance of a Unicode
80+
Return ``1``(Non Zero) if the object *obj* is a Unicode object or an instance of a Unicode
8181
subtype. This function always succeeds.
8282
8383
8484
.. c:function:: int PyUnicode_CheckExact(PyObject *obj)
8585
86-
Return true if the object *obj* is a Unicode object, but not an instance of a
86+
Return ``1``(Non Zero) if the object *obj* is a Unicode object, but not an instance of a
8787
subtype. This function always succeeds.
8888
8989

0 commit comments

Comments
 (0)