Skip to content

Commit 01fbfa1

Browse files
Peteer's review
1 parent 8ec8390 commit 01fbfa1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Doc/c-api/conversion.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,17 @@ The following functions provide locale-independent string to number conversions.
167167
Case insensitive comparison of strings. The function works almost
168168
identically to :c:func:`!strcmp` except that it ignores the case and locale.
169169
170-
This is an alias of :c:func:`PyOS_mystricmp` on all platforms except Windows.
170+
This is an alias of :c:func:`PyOS_mystricmp` on all platforms except Windows,
171+
where it is an alias of :c:func:`!strcmp`.
171172
172173
173174
.. c:function:: int PyOS_strnicmp(const char *s1, const char *s2, Py_ssize_t size)
174175
175176
Case insensitive comparison of strings. The function works almost
176177
identically to :c:func:`!strncmp` except that it ignores the case and locale.
177178
178-
This is an alias of :c:func:`PyOS_mystricmp` on all platforms except Windows.
179+
This is an alias of :c:func:`PyOS_mystricmp` on all platforms except Windows,
180+
where it is an alias of :c:func:`!strncmp`.
179181
180182
181183
.. c:function:: int PyOS_mystricmp(const char *str1, const char *str2)

0 commit comments

Comments
 (0)