Projet

Général

Profil

0001-python3-same-encoding-and-unquoting-on-two-compared-.patch

Paul Marillonnet, 06 mars 2019 20:28

Télécharger (831 octets)

Voir les différences:

Subject: [PATCH] python3: same encoding and unquoting on two compared urls in
 tests (#31168)

 tests/utils.py | 1 +
 1 file changed, 1 insertion(+)
tests/utils.py
74 74
           given parameter exist in the first url, it does not check the exact
75 75
           value.
76 76
        '''
77
        url1 = iri_to_uri(utils.make_url(url1, params=kwargs))
77 78
        splitted1 = urlparse.urlsplit(url1)
78 79
        url2 = iri_to_uri(utils.make_url(url2, params=kwargs))
79 80
        splitted2 = urlparse.urlsplit(url2)
80
-