Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/c-api/unicode.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
1 change: 1 addition & 0 deletions Misc/ACKS
Original file line number Diff line number Diff line change
Expand Up @@ -1630,6 +1630,7 @@ Suman Saha
Koki Saito
Hajime Saitou
George Sakkis
Shoaib Sadiq Salehmohamed
Victor Salgado
Rich Salz
Kevin Samborn
Expand Down
Loading