<div dir="ltr">There was a bunch of discussion about all this a while back, in which I think these points were addressed:<div><br></div><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">However, in some cases the C locale is a normal environment for system services, cron scripts, distro package builds and whatnot.<br></blockquote><div><br></div><div>Indeed it is. But:</div><div><br></div><div>if you run a Python (or any) program that is expecting an ASCII-only locale, then it will work jsut fine with any ascii-compatible locale. -- so no problem there.</div><div><br></div><div>On the other hand, if you run a program that is expectign a unicode-aware locale, then it might barf unexpectently if run on a ASCII-only locale. A lot of people do in fiact have these issues (which are due to mis-configuration of the host system, which is indeed not properly Python's problem).</div><div> </div><div>So if we do all this, then:</div><div><br></div><div>A) mis-configured systems will magically work (sometimes)</div><div><br></div><div> This is a Good Thing.</div><div><br></div><div>and</div><div><br></div><div>B) If someone runs a python program that is expecting Unicode support on an properly configured ASCII-only system, then it will mostly "just work" -- after all a lot of C APIs are simply char*, who cares what the encoding is? It would not, however, fail if when a non-ascii value is used somewhere it shouldn't. </div><div><br></div><div>So the question nis -- is anyone counting on errors in this case? i.e., is a sysadmin thinking:</div><div><br></div><div>"I want an ASCII-only system, so I'll set the locale, and now I can expect any program running on this system that is not ascii compatible to fail."</div><div><br></div><div>I honestly don't know if this is common -- but I would argue that trying to run a unicode-aware program on an ASCII-only system could be considered a mis-configuration as well.</div><div><br></div><div>Also -- many programs will just be writing bytes to the system without checking encoding anyway. So this would simply let Python3 programs behave like most others...</div><div><br></div><div>-CHB</div><div><br></div></div><div><br></div>-- <br><div class="m_-6606457167930704976gmail_signature" data-smartmail="gmail_signature"><br>Christopher Barker, Ph.D.<br>Oceanographer<br><br>Emergency Response Division<br>NOAA/NOS/OR&R            <a href="tel:(206)%20526-6959" value="+12065266959" target="_blank">(206) 526-6959</a>   voice<br>7600 Sand Point Way NE   <a href="tel:(206)%20526-6329" value="+12065266329" target="_blank">(206) 526-6329</a>   fax<br>Seattle, WA  98115       <a href="tel:(206)%20526-6317" value="+12065266317" target="_blank">(206) 526-6317</a>   main reception<br><br><a href="mailto:Chris.Barker@noaa.gov" target="_blank">Chris.Barker@noaa.gov</a></div>
</div></div>