File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments