mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #22156: Fix some "comparison between signed and unsigned integers"
compiler warnings in the Modules/ subdirectory.
This commit is contained in:
parent
12174a5dca
commit
706768c687
13 changed files with 24 additions and 21 deletions
|
@ -1236,7 +1236,7 @@ pattern_repr(PatternObject *obj)
|
|||
};
|
||||
PyObject *result = NULL;
|
||||
PyObject *flag_items;
|
||||
int i;
|
||||
size_t i;
|
||||
int flags = obj->flags;
|
||||
|
||||
/* Omit re.UNICODE for valid string patterns. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue