This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients ezio.melotti, malin, methane, serhiy.storchaka, vstinner
Date 2020-07-18.08:39:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595061548.39.0.772429576176.issue41330@roundup.psfhosted.org>
In-reply-to
Content
In the Web application you need first to generate data (this may involve some network requests, IO operations, and some data transformations), then format the page, then encode it, and finally send it to client. I suppose that the encoding part is minor in comparison with others.

Also, as Inada-san noted, UTF-8 is more popular encoding in modern applications. It is also fast, so you may prefer UTF-8 if the performance of encoding is important to you.
History
Date User Action Args
2020-07-18 08:39:08serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, ezio.melotti, methane, malin
2020-07-18 08:39:08serhiy.storchakasetmessageid: <1595061548.39.0.772429576176.issue41330@roundup.psfhosted.org>
2020-07-18 08:39:08serhiy.storchakalinkissue41330 messages
2020-07-18 08:39:08serhiy.storchakacreate