Changes between Initial Version and Version 1 of Ticket #18119, comment 20
- Timestamp:
- May 21, 2024, 6:11:43 AM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18119, comment 20
initial v1 3 3 Although python beautifully supports UTF, the developer is often required to handle non-ascii characters specially. For example, when checking their length, or storing them somewhere, or serializing them to somewhere else. The exceeding rarity of IDNA causes many to assume the domain is ASCII, only to run into exception later in production. 4 4 5 If not else, the presence of the accept_idna option forces the developer to think whether that's a relevant case for them, and what to do about it.5 If nothing else, the presence of the accept_idna option forces the developer to think whether that's a relevant case for them, and what to do about it. 6 6 7 7 I wouldn't necessarily consider adding it if the patch was without, but I certainly see value in keeping it now it's already there.