### _idna_encode checks for non-ASCII characters incorrectly From `src/urllib3/util/url.py`: ```python3 if name and any([ord(x) > 128 for x in name]): try: import idna ``` Since the ASCII range ends at `chr(127)`, the comparison should use `>=` rather than `>`.