Compare commits

...

1 commit

Author SHA1 Message Date
c6a0a512c4 Remove outdated comment
A comment about a possible relaxation of how bytes URLs are treated
in Python 3.3 is no longer relevant or useful. Remove it.
2024-06-29 08:31:35 -05:00

View file

@ -97,11 +97,6 @@ def clear_cache():
_byte_quoter_factory.cache_clear() _byte_quoter_factory.cache_clear()
# Helpers for bytes handling # Helpers for bytes handling
# For 3.2, we deliberately require applications that
# handle improperly quoted URLs to do their own
# decoding and encoding. If valid use cases are
# presented, we may relax this by using latin-1
# decoding internally for 3.3
_implicit_encoding = 'ascii' _implicit_encoding = 'ascii'
_implicit_errors = 'strict' _implicit_errors = 'strict'