diff -r 2c9c2d67e4d8 -r adcffadf4962 E5Network/E5RFC6266.py --- a/E5Network/E5RFC6266.py Thu Mar 16 19:30:15 2017 +0100 +++ b/E5Network/E5RFC6266.py Thu Mar 16 19:32:33 2017 +0100 @@ -42,7 +42,7 @@ super(UniqueNamespace, self).__setitem__(key, value) # RFC 2616 - separator_chars = "()<>@,;:\\\"/[]?={} \t" # __IGNORE_WARNING__ + separator_chars = "()<>@,;:\\\"/[]?={} \t" # __IGNORE_WARNING_M613__ ctl_chars = ''.join(chr(i) for i in range(32)) + chr(127) nontoken_chars = separator_chars + ctl_chars @@ -51,7 +51,7 @@ attr_chars = string.ascii_letters + string.digits + attr_chars_nonalnum # RFC 5987 gives this alternative construction of the token character class - token_chars = attr_chars + "*'%" # __IGNORE_WARNING__ + token_chars = attr_chars + "*'%" # __IGNORE_WARNING_M601__ # Definitions from https://tools.ietf.org/html/rfc2616#section-2.2 # token was redefined from attr_chars to avoid using AnyBut,