summaryrefslogtreecommitdiffstats
path: root/contrib/python/Werkzeug/py3/patches/05-safe-symbols.patch
blob: 2034626b14a69f28f870e88baa05dabcc2c3cbc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# This patch cant be droped after d0f040a65bfc39c52930f0ea0ca0a9d465bc5043 commit
--- contrib/python/Werkzeug/py3/werkzeug/urls.py
+++ contrib/python/Werkzeug/py3/werkzeug/urls.py
@@ -27,7 +27,6 @@ _always_safe = frozenset(
         b"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
         b"0123456789"
         b"-._~"
-        b"$!'()*+,;"  # RFC3986 sub-delims set, not including query string delimiters &=
     )
 )