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 davispuh
Recipients davispuh, eryksun, ezio.melotti, martin.panter, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2016-06-04.15:53:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465055604.37.0.347359529451.issue27179@psf.upfronthosting.co.za>
In-reply-to
Content
it makes no sense to not use better encoding default in some cases like my patch does. Most programs use console's encoding not ANSI codepage and thus by limiting default only to ANSI codepage we force basically everyone to always specify encoding. This is current behavior that ANSI codepage is used and that's why this issue and also #27048. if we keep it this way then specifying encoding will be required for like 99% of cases which means it's useless default. Actually I don't even know any Windows program which does input/output (not talking about files because that's different) in ANSI codepage because it would be broken when displayed in console as that by default uses OEM codepage. Anyway my patch doesn't really change default it just uses console encoding in most cases and then fallbacks to same current default ANSI codepage.
History
Date User Action Args
2016-06-04 15:53:24davispuhsetrecipients: + davispuh, paul.moore, vstinner, tim.golden, ezio.melotti, martin.panter, zach.ware, eryksun, steve.dower
2016-06-04 15:53:24davispuhsetmessageid: <1465055604.37.0.347359529451.issue27179@psf.upfronthosting.co.za>
2016-06-04 15:53:24davispuhlinkissue27179 messages
2016-06-04 15:53:24davispuhcreate