manchandavishal 1457628e0e Fix Python3.11 unit test failures
In Python 3.11, regex have undergone changes in
how they handle Unicode characters. In Python3.11,
global flags must be placed right at the start of a
regular expression. The following regex:

        validators.RegexValidator(r'^(?u)[^/]+$')
must become:
        validators.RegexValidator(r'(?u)^[^/]+$')

Closes-Bug: #2036378
Change-Id: I3884ae5b3a32e33077cf3efeac649ac0c615fdda
2023-09-20 21:15:13 +05:30
..
2022-02-04 16:22:07 +09:00
2022-02-04 16:26:54 +09:00
2023-09-20 21:15:13 +05:30
2016-11-17 16:00:00 -07:00